Skip to main content
POST
/
:projectId
/
api
/
v7
/
auth
/
sign-out
Sign Out
curl --request POST \
  --url https://api.replyke.com/api/v6/:projectId/api/v7/auth/sign-out \
  --header 'Content-Type: application/json' \
  --data '
{
  "refreshToken": "<string>"
}
'
Signs out a user by invalidating their refresh token and the entire token family associated with it. All rotated tokens from the same session are revoked, preventing future token refreshes. The endpoint always returns 204 No Content, even if the refresh token is missing, invalid, or already expired. This ensures sign-out is always safe to call.

Body Parameters

refreshToken
string
The refresh token JWT to invalidate. If omitted or null, the server returns 204 without performing any revocation.

Response

Returns 204 No Content on success. No response body.

See Also