Users
Edit an existing user
Getting Started
Attendees
Availabilities
Booking References
Bookings
Credentials
Destination Calendars
Event Types
Memberships
Schedules
Selected Calendars
Teams
Users
Users
Edit an existing user
PATCH
/
users
/
{userId}
curl --request PATCH \
--url https://api.cal.com/v1/users/{userId} \
--header 'Content-Type: application/json' \
--data '{
"email": "email@example.com",
"username": "johndoe",
"weekStart": "MONDAY",
"brandColor": null,
"darkBrandColor": null,
"timeZone": "EUROPE/PARIS",
"theme": "LIGHT",
"timeFormat": "TWELVE",
"locale": "FR"
}'
Authorizations
Path Parameters
ID of the user to edit
Query Parameters
Your API key
Body
application/json
Edit an existing attendee related to one of your bookings
The body is of type object
.
Response
200
OK, user edited successfully
Was this page helpful?
curl --request PATCH \
--url https://api.cal.com/v1/users/{userId} \
--header 'Content-Type: application/json' \
--data '{
"email": "email@example.com",
"username": "johndoe",
"weekStart": "MONDAY",
"brandColor": null,
"darkBrandColor": null,
"timeZone": "EUROPE/PARIS",
"theme": "LIGHT",
"timeFormat": "TWELVE",
"locale": "FR"
}'