Developer Portal

Change PasswordPUT

Change the password used by a client profile to authenticate and access client-facing trading services.

View as Markdown
PUT
/profiles/change-password

Authorization

Authorization<token>

Bearer access token issued by the admin login flow.

In: header

Request Body

application/jsonRequired

Sets a new password for the given profile.

idstring
newPasswordstring
curl -X PUT "https://example.com/profiles/change-password" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "id": "string",
    "newPassword": "string"
  }'

A successful response.

{}