Skip to main content
POST
/
publisher
/
{publisher_id}
/
reader
/
verify-email
Verify email
curl --request POST \
  --url https://cms.thepublive.com/publisher/{publisher_id}/reader/verify-email/ \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>",
  "token": "<string>"
}
'
{
  "status": "ok",
  "message": "User verification successful",
  "user_verification_successful": true
}
Verifies a reader’s email address. Call this endpoint with the email and token extracted from the verification link sent after Register.
publisher_id
string
required
Your Publisher ID
email
string
required
Reader’s email address. Normalized to lowercase before forwarding.
token
string
required
Verification token from the email link.
{
  "status": "ok",
  "message": "User verification successful",
  "user_verification_successful": true
}
Last modified on June 5, 2026