Skip to main content
POST
https://api.dintero.com/v1
/
account
/
user
/
password
account_user_password_put
curl --request POST \
  --url https://api.dintero.com/v1/account/user/password \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "previous_password": "<string>",
  "proposed_password": "<string>"
}
'
{
  "error": {
    "message": "<string>",
    "code": "<string>",
    "errors": [
      {}
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication (token authentication) should be used for accessing the API.

Use Get Token to get an access token for client credentials. Pass the token in the request header:

Authorization: Bearer {access_token}

where the access_token is JSON Web Tokens (JWT).

Body

application/json
previous_password
string
required
proposed_password
string
required

Response

Accepted

Last modified on June 19, 2026