POST
/v1/auth/password/update

Authorization

AuthorizationRequiredBearer <token>

In: header

Request Body

application/jsonRequired
loginIdstring
newPasswordstring
curl -X POST "https://api.descope.com/v1/auth/password/update" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "loginId": "string",
    "newPassword": "string"
  }'

OK

Was this helpful?