Skip to content

Authentication

Before you can make any API calls, you need to obtain an authentication token. This token is used to authenticate your requests to the API. You can obtain a token by making a POST request to the /connect/token endpoint with your credentials.

POST /connect/token
If the request is successful, you will receive a response containing the access token, which you can use in subsequent API calls.
Section titled “If the request is successful, you will receive a response containing the access token, which you can use in subsequent API calls.”

200 - OK

400 - Bad Request

Example Response
{
"access_token": "string",
"token_type": "string",
"expires_in": 0,
"scope": "string"
}