Request password reset
Send a password reset token by email to the user. It uses a classic scheme where a token is sent by email.
POST
/auth/reset-password
curl \
--request POST 'http://api.example.com/auth/reset-password' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"email":"admin@example.com"}'
Request examples
{
"email": "admin@example.com"
}