Skip to main content
POST
/
members
/
{membersId}
/
password-reset
Send a password reset email
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
}

Path Parameters

membersId
string
required

Body

application/json
newPassword
string
required
resetToken
string
required
emailAddress
string<email>

Response

200 - application/json

Outcome

success
boolean