POST api/Token

Using Registered User credentials, request a Token to be used to access other areas of this API.

Request Information

URI Parameters

None.

Body Parameters

RequestToken

RequestToken
NameDescriptionTypeAdditional information
Email

string

Required

Password

string

Required

Data type: Password

String length: inclusive between 6 and 100

Request Formats

application/json, text/json

Sample:
{
  "email": "sample string 1",
  "password": "sample string 2"
}

application/xml, text/xml

Sample:
<RequestToken xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MDES.CustomerService.Models">
  <Email>sample string 1</Email>
  <Password>sample string 2</Password>
</RequestToken>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>