For the complete documentation index, see llms.txt. This page is also available as Markdown.

Application token object

This document contains the application token object returned by token endpoints.

Used in

Endpoint / Area
How it is used

Returned when listing or creating application tokens

Object example

{
  "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "name": "string",
  "token": "string",
  "createdAt": "2026-07-21T13:41:33.695Z",
  "expireAt": "2026-07-21T13:41:33.695Z",
  "lastUsedAt": "2026-07-21T13:41:33.695Z"
}

Fields

Field
Type
Required
Description

id

UUID

Not specified

Application token ID

name

string

Not specified

Application token name

token

string

Not specified

Token value for the Authorization header

createdAt

date-time

Not specified

Token creation date and time

expireAt

date-time

Not specified

Token expiration date and time

lastUsedAt

date-time

Not specified

Date and time when the token was last used

Store the token value securely when it is created.

Last updated

Was this helpful?