curl --request PATCH \
--url https://api.example.com/v1/auth/users/{forgotPasswordRequestToken}/password \
--header 'Content-Type: application/json' \
--data '
{
"email": "john@doe.com",
"password": "new-password"
}
'Change user password
curl --request PATCH \
--url https://api.example.com/v1/auth/users/{forgotPasswordRequestToken}/password \
--header 'Content-Type: application/json' \
--data '
{
"email": "john@doe.com",
"password": "new-password"
}
'Was this page helpful?