Most of our endpoints require authentication with an access token.
client_id
and client_secret
.
After successful authentication, you receive a temporarily valid access token (a Bearer token) that you can use to authorise other API requests.
client_id
and client_secret
). We use JWT tokens, which can be decoded to determine when they expire.
You can get an access token by making a POST
request on the Retrieve a bearer token endpoint, like in this example:
Authorization
header of that request. The Bearer token is your access token.
In the following example request, your-bearer-token
has to be replaced with your token: