Skip to main content
GET
/
publisher
/
{publisher_id}
/
newsletter
/
verify-email
Verify email
curl --request GET \
  --url https://cms.thepublive.com/publisher/{publisher_id}/newsletter/verify-email/ \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": "ok",
  "message": "email verified"
}
Confirms a subscriber’s email address using the token from the verification email sent after Subscribe. Both token and email are required — the endpoint returns 400 if either is missing.
publisher_id
string
required
Your Publisher ID
email
string
required
Subscriber’s email address.
token
string
required
Verification token from the email link.
{
  "status": "ok",
  "message": "email verified"
}
Last modified on June 5, 2026