GET api/CreateToken?method={method}&deviceType={deviceType}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| method | string |
Required |
|
| deviceType | string |
Required |
Body Parameters
None.
Response Information
Resource Description
TokenResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| message | string |
None. |
|
| status | string |
None. |
|
| token | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"message": "sample string 1",
"status": "sample string 2",
"token": {}
}
application/xml, text/xml
Sample:
<TokenResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Entity"> <message>sample string 1</message> <status>sample string 2</status> <token /> </TokenResponse>