Skip to main content
POST
/
publisher
/
{publisher_id}
/
reader
/
register
Register
curl --request POST \
  --url https://cms.thepublive.com/publisher/{publisher_id}/reader/register/ \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>",
  "password": "<string>",
  "name": "<string>",
  "picture": "<string>"
}
'
{
  "status": "ok",
  "message": "verification mail sent"
}
Creates a new reader account and sends a verification email. The reader must verify their email before they can log in.
publisher_id
string
required
Your Publisher ID
email
string
required
Reader’s email address. Normalized to lowercase before forwarding.
password
string
required
Reader’s password.
name
string
default:"\"\""
Reader’s display name.
picture
string
default:"\"\""
URL of the reader’s profile picture.
After a successful registration, guide the reader to check their email. Pass the email and token from the verification link to Verify email to activate the account.
{
  "status": "ok",
  "message": "verification mail sent"
}
Last modified on June 5, 2026