/
Update Online Booking Use...
Updating the password of an online booking user.
The response comes with a new user token.
Security
BearerPartner
- Mock serverhttps://developer.alteg.io/_mock/en/public/openapi/booking/user/password
- Production serverhttps://api.alteg.io/api/v1/booking/user/password
curl -i -X PUT \
https://developer.alteg.io/_mock/en/public/openapi/booking/user/password \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"old_password": "qwerty123",
"new_password": "example!"
}'Response
{ "success": true, "data": { "user_token": "4de9d8cc108c0" }, "meta": [] }