Skip to main content
POST
/
publisher
/
{publisher_id}
/
reader
/
logout
Logout
curl --request POST \
  --url https://cms.thepublive.com/publisher/{publisher_id}/reader/logout/ \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": "ok",
  "message": "Logged out successfully."
}
Signals a reader logout. This endpoint makes no backend call and performs no token invalidation — token cleanup is fully client-side. The response is always 200 OK.
publisher_id
string
required
Your Publisher ID
No request body or Authorization header is required. After calling this endpoint, discard the reader token on the client.
{
  "status": "ok",
  "message": "Logged out successfully."
}
Last modified on June 5, 2026