Reference: Token — Fields and Columns
Token List
| Column | Type | Description |
|---|---|---|
| Name | Text | The identifying name of the token. |
| Status | Enum | Active — the token is valid. Expired — the token has expired and cannot be used. |
| Created At | Timestamp | When the token was created (UTC). |
| Expired at | Timestamp | When the token expires (UTC). After this time, the token can no longer be used. |
Create Token Form
| Field | Required | Constraints | Description |
|---|---|---|---|
| Name | Yes | Unique per user | An identifying name — set it according to its intended use for easy management. |
| Expiration | Yes | Select from available options | The token's lifetime. After expiration, the token automatically transitions to Expired status. |
Security Notes
| Point | Description |
|---|---|
| Token value display | Shown only once, immediately after creation. |
| Storage | Store the token in a secure location (secret manager, encrypted environment variable). Do not store in source code. |
| Revocation | Delete the token immediately when it is no longer needed or has been compromised. |
| Scope | The token is tied to the user account — it carries that user's permissions across the entire API. |