Skip to content

Latest commit

 

History

History
15 lines (7 loc) · 764 Bytes

File metadata and controls

15 lines (7 loc) · 764 Bytes

KeyStatus

Lifecycle state of an API key. Status determines whether an API key can be used for authentication: - ACTIVE: Key is valid and can be used for API requests. Last_used_at timestamp is updated on each successful authentication. - REVOKED: Key has been manually revoked by an admin or user. Cannot be reactivated. A new key must be created instead. - EXPIRED: Key has passed its expires_at timestamp. Automatically set by the authentication system. Cannot be reactivated.

Enum

  • ACTIVE (value: 'active')

  • REVOKED (value: 'revoked')

  • EXPIRED (value: 'expired')

[Back to Model list] [Back to API list] [Back to README]