curl --request GET \
--url https://api.cal.com/v2/organizations/{orgId}/organizations
{
"status": "success",
"data": [
{
"id": 123,
"name": "<string>",
"slug": "<string>",
"metadata": {
"key": "value"
}
}
],
"pagination": {
"totalItems": 123,
"remainingItems": 103,
"returnedItems": 10,
"itemsPerPage": 10,
"currentPage": 2,
"totalPages": 13,
"hasNextPage": true,
"hasPreviousPage": true
}
}
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 GET \
--url https://api.cal.com/v2/organizations/{orgId}/organizations
{
"status": "success",
"data": [
{
"id": 123,
"name": "<string>",
"slug": "<string>",
"metadata": {
"key": "value"
}
}
],
"pagination": {
"totalItems": 123,
"remainingItems": 103,
"returnedItems": 10,
"itemsPerPage": 10,
"currentPage": 2,
"totalPages": 13,
"hasNextPage": true,
"hasPreviousPage": true
}
}
For platform customers - OAuth client secret key
For platform customers - OAuth client ID
Maximum number of items to return
1 <= x <= 250
Number of items to skip
x >= 0
The slug of the managed organization
The key of the metadata - it is case sensitive so provide exactly as stored. If you provide it then you must also provide metadataValue
The value of the metadata - it is case sensitive so provide exactly as stored. If you provide it then you must also provide metadataKey
The response is of type object
.
Was this page helpful?