Skip to content
Get Started

Tokens

Operations for minting and revoking temporary account API tokens

Mint a temporary API token
POST/v3/auth/tokens
Revoke a temporary API token
DELETE/v3/auth/tokens/{token_id}
ModelsExpand Collapse
TokenCreateResponse object { token, expires_at, phone_numbers, 2 more }
token: string

Plaintext temporary bearer token. Store it securely; it is returned only once.

expires_at: string

ISO timestamp when the token expires.

formatdate-time
phone_numbers: array of string

Phone-number scope for this token. Empty means the token is account-scoped.

token_id: string

Token identifier used for revocation.

formatuuid
token_type: "Bearer"