Password & Email
Trigger password reset flows and verify user email addresses.
See also: Password & Email documentation | Full API Reference for interactive testing and complete schemas.
Endpoints
| Method | Path | Description | Reference |
|---|---|---|---|
| POST | /email-verification/create-token | Creates a token for updating/verifying a user's email address, or for registering a new user if a username is not supplied | API Reference → |
| GET | /email-verification/public/public-key | Gets the public key for verifying email verification tokens | API Reference → |
| POST | /email-verification/public/register | Registers a new user if the token's signature can be verified | API Reference → |
| POST | /email-verification/public/send-email | Public endpoint that sends an email containing an email verification link | API Reference → |
| POST | /email-verification/public/update-email | Updates the target user's email address if the token's signature can be verified | API Reference → |
| GET | /email-verification/public/verify | Parse and verify an email verification token | API Reference → |
| POST | /email-verification/reset-keys | Resets the public and private keys | API Reference → |
| POST | /email-verification/send-email | Creates a token for verifying an email address and sends it to that email address | API Reference → |
| POST | /password-reset/create | Creates a password reset token and link for the given user | API Reference → |
| GET | /password-reset/public-key | Gets the public key for verifying password reset tokens | API Reference → |
| POST | /password-reset/reset | Resets the user's password if the token is correct | API Reference → |
| POST | /password-reset/reset-keys | Resets the public and private keys | API Reference → |
| POST | /password-reset/send-email | Sends the user an email containing a password reset link | API Reference → |
| POST | /password-reset/system-setup | Change admin password and set system locale, system timezone | API Reference → |
| GET | /password-reset/verify | Parse and verify a password reset token | API Reference → |