Skip to main content
POST
/
auth
{
  "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
  "expires_in": 3600,
  "token_type": "Bearer"
}
For the authentication flow, required headers, and token usage details, please refer to the Authentication page.

Endpoint

POST /auth

Headers

Api-Key
string<uuid>
required

Your API key.

Customer-Id
string<uuid>
required

Your customer ID.

Content-Type
enum<string>
required
Available options:
application/x-www-form-urlencoded

Response

200 - application/json

Authentication successful.

access_token
string

JWT Bearer token for use in subsequent requests.

expires_in
integer

Token validity in seconds.

Example:

3600

token_type
string
Example:

"Bearer"