API referenceAuthentication
Request a password reset email
Request a password reset email
POST
/v1/auth/password-reset/requestAlways returns 204 whether or not the email exists, to prevent
account enumeration. Rate limit: 30 requests per 60 s per IP.
Error codes: invalid_input (400).
Authentication
- This operation needs no authentication.
Parameters
This operation takes no parameters.
Request body
required
Content type: application/json
{
"email": "founder@academy.example"
}Responses
| Status | Meaning |
|---|---|
204 | Accepted. A reset email is sent only if the address exists. |
400 | The request body or query failed validation. The per-operation description lists the exact error.code values. |
429 | Rate limit exceeded. |
Example request
{
"email": "founder@academy.example"
}Try it
POST
/v1/auth/password-reset/requestNo authentication
API playground
Send a live request to the Videohati API; this operation needs no authentication.
https://api.staging.videohati.com/v1/auth/password-reset/request