Sign Out
Auth Endpoints
Sign Out
Sign out a user by invalidating their refresh token
POST
Sign Out
Signs the user out by deleting the refresh token from the database and clearing the HttpOnly cookie. Accepts the refresh token from either the request body or cookie.Documentation Index
Fetch the complete documentation index at: https://docs.replyke.com/llms.txt
Use this file to discover all available pages before exploring further.
Headers
Can include
replyke-refresh-jwt cookie with the refresh tokenBody Parameters
JWT refresh token (optional if provided via cookie)
Response
Returns 204 No Content on success with no response body
Error Responses
Server Error - 500 Internal Server Error
Server Error - 500 Internal Server Error
Notes
- If the refresh token is valid, the corresponding token record is deleted.
- If the refresh token is invalid, expired, or missing, 204 is still returned.
- The cookie
replyke-refresh-jwtis cleared if present. - No information is leaked about whether the token existed or was valid.

