curl --request GET \
--url https://api.cal.com/v2/organizations/{orgId}/routing-forms \
--header 'Authorization: <authorization>'
{
"status": "success",
"data": [
{
"name": "My Form",
"description": "This is the description.",
"position": 0,
"createdAt": "2024-03-28T10:00:00.000Z",
"updatedAt": "2024-03-28T10:00:00.000Z",
"userId": 2313,
"teamId": 4214321,
"disabled": false,
"id": "<string>",
"routes": {},
"fields": {},
"settings": {}
}
]
}
curl --request GET \
--url https://api.cal.com/v2/organizations/{orgId}/routing-forms \
--header 'Authorization: <authorization>'
{
"status": "success",
"data": [
{
"name": "My Form",
"description": "This is the description.",
"position": 0,
"createdAt": "2024-03-28T10:00:00.000Z",
"updatedAt": "2024-03-28T10:00:00.000Z",
"userId": 2313,
"teamId": 4214321,
"disabled": false,
"id": "<string>",
"routes": {},
"fields": {},
"settings": {}
}
]
}
value must be Bearer <token>
where <token>
is api key prefixed with cal_
Number of responses to skip
Number of responses to take
Sort by creation time
asc
, desc
Sort by update time
asc
, desc
Filter by responses created after this date
Filter by responses created before this date
Filter by responses created after this date
Filter by responses updated before this date
Filter by responses routed to a specific booking
Filter by teamIds. Team ids must be separated by a comma.
The response is of type object
.
Was this page helpful?