The session management endpoints allow you to list active admin sessions, revoke individual sessions, and revoke all sessions at once.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/KingPsychopath/oooc-fete-finder/llms.txt
Use this file to discover all available pages before exploring further.
List active sessions
Retrieve all active admin authentication sessions.Authentication
Response
Whether the request succeeded
Number of active sessions
Current global token version (sessions with older versions are invalid)
Current server timestamp (Unix seconds)
Example response
Error responses
401 UnauthorizedRevoke a specific session
Revoke a single admin session by its JWT ID.Authentication
Path parameters
The JWT ID of the session to revoke. URL encoding is handled automatically.
Response
Whether the revocation succeeded
The JWT ID that was revoked
Example response
Error responses
401 UnauthorizedRevoke all sessions
Revoke all active admin sessions by incrementing the global token version. This immediately invalidates all existing session tokens.Authentication
Response
Whether the revocation succeeded
The new global token version (all previous versions are now invalid)
ISO 8601 timestamp of the revocation
Example response
Error responses
401 UnauthorizedUse cases
Security incident response
If you suspect an admin session has been compromised, use the revoke all sessions endpoint to immediately invalidate all tokens:Session cleanup
List active sessions to identify and revoke specific old or suspicious sessions:Logout from other devices
Revoke all sessions except the current one by calling the revoke all endpoint, then immediately re-authenticating to create a new session.Sessions are stored in the same data store as your event data (Postgres or Vercel KV). The session list endpoint returns sessions sorted by creation time, with newest sessions first.