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
Example request
{
"old_password": "qwerty123",
"new_password": "example!"
}Response
OK
Example response
{
"success": true,
"data": {
"user_token": "4de9d8cc108c0"
},
"meta": []
}