Authentication
Reset password
Reset the user's password using the token received by email.
put/v1/authentication/reset-password
Request body
Example request
{
"email": "user@example.com",
"token": "b3ac64d6c55b3ac64d6c55",
"new_password": "N3w_p4ssw0rd"
}Response
Password reset
Example response
{
"status": 200,
"data": {
"email": "user@example.com"
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.