Get Remote Authentication Token
Use this endpoint to decode a single remote authentication token into its constituent parts i.e., Security Token and Ad Id.
| GET /remote-authentication/token/{token}/data
|
Query Param |
Type |
Required |
Description |
token |
string |
Required |
The remote authentication token. |
Output
If the associated customer cannot be found, this endpoint will return a 404 status code along with the standard error response.
For successful responses, the endpoint returns a JSON object with the following property:
Property |
Type |
Description |
token |
string |
The security token. |
AdId |
string |
The Ad Id associated with the token. |
Example
Request
| GET /api/v1/remote-authentication/token/C1FA3C38-1B28-4B54-A2F8-E577FFEEF9F5/data
|
Response
| {
"securityToken":"C1FA3C38-1B28-4B54-A2F8-E577FFEEF9F5",
"adId":"10132748"
}
|
| 404 Not Found or 500 Server Error
|