Token V2

TokenV2.xsd

Token v2 API Specification 3.0.pdf

The license key is passed through the header. Enter your license key here to use this test form.


Test Form

* (asterisk) indicates required parameter
red options are unacceptable values.

Example jQuery

var uri = "https://api.mdguidelines.com/api/v2/token/GenerateUserToken"; uri += "?fname=John"; uri += "&lname=Smith"; uri += "&email=jsmith@company.com"; uri += "&userlicensekey=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"; $.ajax({ url: uri, type: 'POST', dataType: 'json', headers: { 'RG-LICENSE-KEY': 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX', }, success: function (data) { handleData(data) }, error: function (xhr, status, error) { handleError(xhr, status, error) } })