Menu

Authentication

For most endpoints, authentication is required. This can be done in three ways specified below.
The methods allowed per endpoint are specified in the documentation of the endpoint. The methods that are available are JWT, API key and a intent.


JWT Access- and Refresh Tokens

The JWT Access token and Refresh Token can be retrieved by calling the login endpoint.

When created it can be set in the header as the example below.
Authorization: Bearer {JWT Access Token}

API Token

The API token can be retrieved by calling the token endpoint.
To call any /token endpoints, you need to use a JWT token for authorization.

When created it can be set in the header as the example below.
Authorization: Bearer {API Token}

Intents

The Intent can be retrieved by calling the intents endpoint.
To call any /intents endpoints, you need to use a API token for authorization.

When created it can be set in the header as the example below.
Authorization: Bearer {INTENT Token}
Menu