Skip to main content
GET
/
v2
/
event-types
/
{eventTypeId}
/
scheduling-config
Get scheduling configuration
curl --request GET \
  --url https://api.cal.com/v2/event-types/{eventTypeId}/scheduling-config \
  --header 'Authorization: <authorization>' \
  --header 'cal-api-version: <cal-api-version>'
{
  "status": "success",
  "data": {
    "eventTypeId": 1,
    "schedulingType": "roundRobin",
    "hosts": [
      {
        "userId": 1,
        "name": "John Doe",
        "username": "john-doe",
        "mandatory": false,
        "priority": "medium",
        "weight": 100,
        "avatarUrl": "<string>",
        "groupId": "<string>"
      }
    ],
    "assignAllTeamMembers": false,
    "hostGroups": [
      {
        "id": "<string>",
        "name": "Sales Team"
      }
    ],
    "rescheduleWithSameRoundRobinHost": false,
    "isRRWeightsEnabled": false,
    "maxLeadThreshold": 3,
    "includeNoShowInRRCalculation": false,
    "crmRecordOwnerFallbackWindowHours": 24
  }
}

Headers

cal-api-version
string
default:2024-06-14
required

Must be set to 2024-06-14. If not set to this value, the endpoint will default to an older version.

Authorization
string
required

value must be Bearer <token> where <token> is api key prefixed with cal_, managed user access token, or OAuth access token

Path Parameters

eventTypeId
number
required

Response

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

"success"

data
object
required