Generate Access Token

This API is used to generate an access token using the Key ID and Secret API Key created from the Manage API Keys page

POST {{BaseURL}/clients/{clientAccountId}/token

Headers

Name
Value
Description

X-Public-Access

allow

Required

Body

Name
Type
Description

api_key

string

Required API key from the Manage API Keys Page

key_id

string

Required Key ID from the Manage API Keys Page

Request

{
    "key_id": "aaaee1b1-7a2f-4c0b-8271-4e2b41c1bf01",
    "api_key": "caf1694e-b8a4-4082-82fc-105a0a63eafe"
}

Response

{
    "token": "a4p0pZ2x3aEk9TYGxPZldm0qvWQknTXTINPZxNpIZ32yWmiOFtGqv2mEU7nJlQO6",
    "created_at": "2025-07-10T06:59:05.72Z"
}

Last updated

Was this helpful?