GET
/
v2
/
organizations
/
{orgId}
/
teams
/
{teamId}
/
routing-forms
curl --request GET \
  --url https://api.cal.com/v2/organizations/{orgId}/teams/{teamId}/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": {}
    }
  ]
}

Headers

Authorization
string
required

value must be Bearer <token> where <token> is api key prefixed with cal_

Path Parameters

orgId
number
required
teamId
number
required

Query Parameters

skip
number

Number of responses to skip

take
number

Number of responses to take

sortCreatedAt
enum<string>

Sort by creation time

Available options:
asc,
desc
sortUpdatedAt
enum<string>

Sort by update time

Available options:
asc,
desc
afterCreatedAt
string

Filter by responses created after this date

beforeCreatedAt
string

Filter by responses created before this date

afterUpdatedAt
string

Filter by responses created after this date

beforeUpdatedAt
string

Filter by responses updated before this date

routedToBookingUid
string

Filter by responses routed to a specific booking

Response

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

"success"

data
object[]
required