Skip to main content

Reference: Token — Fields and Columns

Token List

ColumnTypeDescription
NameTextThe identifying name of the token.
StatusEnumActive — the token is valid. Expired — the token has expired and cannot be used.
Created AtTimestampWhen the token was created (UTC).
Expired atTimestampWhen the token expires (UTC). After this time, the token can no longer be used.

Create Token Form

FieldRequiredConstraintsDescription
NameYesUnique per userAn identifying name — set it according to its intended use for easy management.
ExpirationYesSelect from available optionsThe token's lifetime. After expiration, the token automatically transitions to Expired status.

Security Notes

PointDescription
Token value displayShown only once, immediately after creation.
StorageStore the token in a secure location (secret manager, encrypted environment variable). Do not store in source code.
RevocationDelete the token immediately when it is no longer needed or has been compromised.
ScopeThe token is tied to the user account — it carries that user's permissions across the entire API.