Skip to content

Forgot Password

POST
/api/v1/auth/web/forgot-password

Send a password reset link to the user’s email.

object
email
required

The registered email address.

string
john@example.com
object
message
string
Password reset link sent to your email.
{
"message": "Password reset link sent to your email."
}

Email not found

object
message
string
The given data was invalid.
errors
object
email
Array<string>
[
"We could not find an account with that email."
]
{
"message": "The given data was invalid.",
"errors": {
"email": [
"We could not find an account with that email."
]
}
}