v1

latestOpenAPI 3.1.1Altegio API Agreement2026-08-062438211.0 KB
Client Personal Cabinet

Update Online Booking User Password

Updating the password of an online booking user.

The response comes with a new user token.

put/booking/user/password

Headers

Acceptstring required

e.g. application/vnd.api.v2+json

Content-Typestring required

application/json

Authorizationstring required

Bearer partner_token, User user_token

Request body

old_passwordstring

Current Password

new_passwordstring

New password

Example request

{
  "old_password": "qwerty123",
  "new_password": "example!"
}

Response

OK

successboolean

Execution success status (true)

metaobject[]

Metadata (empty array)

Example response

{
  "success": true,
  "data": {
    "user_token": "4de9d8cc108c0"
  },
  "meta": []
}