curl --request PATCH \
--url https://api.cal.com/v2/organizations/{orgId}/organizations/{managedOrganizationId} \
--header 'Content-Type: application/json' \
--data '{
"name": "CalTeam",
"metadata": {
"key": "value"
}
}'
{
"status": "success",
"data": {
"id": 123,
"name": "<string>",
"slug": "<string>",
"metadata": {
"key": "value"
}
}
}
Requires the user to have at least the ‘ORG_ADMIN’ role within the organization. Additionally, for platform, the plan must be ‘SCALE’ or higher to access this endpoint.
curl --request PATCH \
--url https://api.cal.com/v2/organizations/{orgId}/organizations/{managedOrganizationId} \
--header 'Content-Type: application/json' \
--data '{
"name": "CalTeam",
"metadata": {
"key": "value"
}
}'
{
"status": "success",
"data": {
"id": 123,
"name": "<string>",
"slug": "<string>",
"metadata": {
"key": "value"
}
}
}
For platform customers - OAuth client secret key
For platform customers - OAuth client ID
The response is of type object
.
Was this page helpful?