Skip to content

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.

1
GET /remote-authentication/token/{token}/data

Input Parameters

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

1
GET /api/v1/remote-authentication/token/C1FA3C38-1B28-4B54-A2F8-E577FFEEF9F5/data

Response

1
200 OK
1
2
3
4
{
   "securityToken":"C1FA3C38-1B28-4B54-A2F8-E577FFEEF9F5",
   "adId":"10132748"
}
1
404 Not Found or 500 Server Error