🔨 In Development — This section is still being developed and may change.
Represents the confirmation payload returned by the Freddy logout endpoint.
statusstring — Outcome of the logout request (successorerror).messagestring — Human-readable confirmation message.revoked_tokensarray — Token identifiers that were invalidated during logout.timestampstring — ISO 8601 time when the session was terminated.
{
"status": "success",
"message": "Session terminated",
"revoked_tokens": ["rtu_12345"],
"timestamp": "2025-11-05T10:15:24Z"
}title: Logout Response Object badge: draft
🔨 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.