curl --request POST \
--url https://api.example.com/members/{membersId}/password-reset \
--header 'Content-Type: application/json' \
--data '
{
"newPassword": "<string>",
"resetToken": "<string>",
"emailAddress": "[email protected]"
}
'{
"success": true
}curl --request POST \
--url https://api.example.com/members/{membersId}/password-reset \
--header 'Content-Type: application/json' \
--data '
{
"newPassword": "<string>",
"resetToken": "<string>",
"emailAddress": "[email protected]"
}
'{
"success": true
}Was this page helpful?