Skip to main content
POST
/
publisher
/
{publisher_id}
/
reader
/
forgot-password
Forgot password
curl --request POST \
  --url https://cms.thepublive.com/publisher/{publisher_id}/reader/forgot-password/ \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>"
}
'
{
  "status": "ok",
  "message": "Reset password link has been sent to your email. Please use the link provided to reset your password"
}
Triggers a password reset email for the given reader. The email contains a one-time token that the reader must pass to Reset password.
publisher_id
string
required
Your Publisher ID
email
string
required
Reader’s email address. Normalized to lowercase before forwarding.
{
  "status": "ok",
  "message": "Reset password link has been sent to your email. Please use the link provided to reset your password"
}
Last modified on June 5, 2026