# Logout response object div strong 🔨 In Development — This section is still being developed and may change. Represents the confirmation payload returned by the Freddy logout endpoint. ## Fields - **`status`** string — Outcome of the logout request (`success` or `error`). - **`message`** string — Human-readable confirmation message. - **`revoked_tokens`** array — Token identifiers that were invalidated during logout. - **`timestamp`** string — ISO 8601 time when the session was terminated. ## Example ```json { "status": "success", "message": "Session terminated", "revoked_tokens": ["rtu_12345"], "timestamp": "2025-11-05T10:15:24Z" } ``` ## Related resources - [Logout](/docs/api-reference/authentication/login/logout) - [Token refresh response object](/docs/api-reference/authentication/objects/token-refresh-response-object) title: Logout Response Object badge: draft # Logout Response Object div strong 🔨 In Development — This section is still being developed and may change. ## Properties **`success`** boolean *required* Indicates whether the logout was successful. **`message`** string *required* A human-readable message describing the logout result. **`timestamp`** string *required* ISO 8601 timestamp when the logout occurred. **`session_id`** string *optional* The ID of the session that was terminated, if applicable.