Skip to main content
POST
Issue a Token
Grab your client_id and client_secret from the API Keys section of the Orchestration Dashboard
  • The TTLs returned from this API are actually the time that the token will expire; i.e. not validity in number of seconds since creation.
  • The timestamps, i.e. TTLs returned from this endpoint are NOT in ISO 8601 format. Rather it is in the format YYYY-MM-DD HH:MM:SS+00.

Body

application/json
client_id
string
required

Client ID

client_secret
string<password>
required

Client Secret

Response

Token issued successfully

access_token
string
Example:

"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."

access_token_ttl
string<date-time>
Example:

"2025-12-28 10:34:45+00"

refresh_token
string
Example:

"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."

refresh_token_ttl
string<date-time>
Example:

"2025-12-28 10:34:45+00"

current_time
string<date-time>
Example:

"2025-12-21 10:34:45+00"