Authentication
How to obtain and use the Access Token (JWT)
1. Get your ClientID and Secret
2. Requesting the Access Token
Issues a JSON Web Token (JWT) to be used in subsequent to API calls.
The received JWT (see access_token property in the Responses section)
needs to be passed in the header of every upcoming service call as a
Bearer token.
Note that this is a short lived token, it needs to be renewed periodically. Typically expires in one hour.
Authorizations
AuthorizationstringRequired
Responses
200
Successful operation
application/json
400
The request could not be understood due to malformed syntax
403
Request forbidden due to missing/invalid authentication information
post
/ids/auth/login3. Using the Access Token
Last updated
Was this helpful?