Skip to main content
POST
/
v1
/
logout
curl -X POST https://api.vouchmark.com/v1/logout \
  -H "Authorization: Bearer $TOKEN"
{
  "success": true,
  "message": "Logged out"
}

Documentation Index

Fetch the complete documentation index at: https://docs.vouchmark.com/llms.txt

Use this file to discover all available pages before exploring further.

Adds the current access token to the Redis blacklist for the remainder of its lifetime, clears auth cookies, and invalidates the refresh token. Subsequent calls with the same token return 401 TOKEN_REVOKED. Requires Authorization: Bearer <accessToken>.
curl -X POST https://api.vouchmark.com/v1/logout \
  -H "Authorization: Bearer $TOKEN"
{
  "success": true,
  "message": "Logged out"
}