Skip to main content
GET
/
v2
/
organizations
/
{orgId}
/
roles
Get all organization roles
curl --request GET \
  --url https://api.cal.com/v2/organizations/{orgId}/roles
{
  "status": "success",
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "color": "<string>",
      "description": "<string>",
      "organizationId": 123,
      "type": "SYSTEM",
      "permissions": [
        "booking.read",
        "eventType.create"
      ],
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ]
}

Headers

Authorization
string

For non-platform customers - value must be Bearer <token> where <token> is api key prefixed with cal_

x-cal-secret-key
string

For platform customers - OAuth client secret key

x-cal-client-id
string

For platform customers - OAuth client ID

Path Parameters

orgId
number
required

Query Parameters

take
number
default:250

Maximum number of items to return

Required range: 1 <= x <= 250
skip
number
default:0

Number of items to skip

Required range: x >= 0

Response

200 - application/json
status
enum<string>
required
Available options:
success,
error
Example:

"success"

data
object[]
required