curl --request PATCH \
--url https://api.cal.com/v2/oauth-clients/{clientId}/users/{userId} \
--header 'Content-Type: application/json' \
--header 'x-cal-secret-key: <x-cal-secret-key>' \
--data '{
"email": "<string>",
"name": "<string>",
"timeFormat": 12,
"defaultScheduleId": 123,
"weekStart": "Monday",
"timeZone": "<string>",
"locale": "en",
"avatarUrl": "https://cal.com/api/avatar/2b735186-b01b-46d3-87da-019b8f61776b.png",
"bio": "I am a bio",
"metadata": {
"key": "value"
}
}'
{
"status": "success",
"data": {
"id": 1,
"email": "[email protected]",
"username": "alice",
"name": "alice",
"bio": "bio",
"timeZone": "America/New_York",
"weekStart": "Sunday",
"createdDate": "2024-04-01T00:00:00.000Z",
"timeFormat": 12,
"defaultScheduleId": null,
"locale": "en",
"avatarUrl": "https://cal.com/api/avatar/2b735186-b01b-46d3-87da-019b8f61776b.png",
"metadata": {
"key": "value"
}
}
}
curl --request PATCH \
--url https://api.cal.com/v2/oauth-clients/{clientId}/users/{userId} \
--header 'Content-Type: application/json' \
--header 'x-cal-secret-key: <x-cal-secret-key>' \
--data '{
"email": "<string>",
"name": "<string>",
"timeFormat": 12,
"defaultScheduleId": 123,
"weekStart": "Monday",
"timeZone": "<string>",
"locale": "en",
"avatarUrl": "https://cal.com/api/avatar/2b735186-b01b-46d3-87da-019b8f61776b.png",
"bio": "I am a bio",
"metadata": {
"key": "value"
}
}'
{
"status": "success",
"data": {
"id": 1,
"email": "[email protected]",
"username": "alice",
"name": "alice",
"bio": "bio",
"timeZone": "America/New_York",
"weekStart": "Sunday",
"createdDate": "2024-04-01T00:00:00.000Z",
"timeFormat": 12,
"defaultScheduleId": null,
"locale": "en",
"avatarUrl": "https://cal.com/api/avatar/2b735186-b01b-46d3-87da-019b8f61776b.png",
"metadata": {
"key": "value"
}
}
}
OAuth client secret key
The response is of type object
.
Was this page helpful?