Updating a team member’s data in online booking.
When updating a phone number, the confirmation_code field must be included in the request. This code should be obtained using the SMS confirmation code of the phone number to change data
Security
BearerPartner
- Mock serverhttps://developer.alteg.io/_mock/en/public/openapi/booking/user
- Production serverhttps://api.alteg.io/api/v1/booking/user
curl -i -X PUT \
https://developer.alteg.io/_mock/en/public/openapi/booking/user \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "James Smith",
"email": "j.smith@example.com",
"phone": "+13155550175",
"confirmation_code": "1234"
}'