Skip to main content
GET
/
v2
/
teams
/
{teamId}
/
event-types
/
{eventTypeId}
/
webhooks
Get all webhooks for a team event type
curl --request GET \
  --url https://api.cal.com/v2/teams/{teamId}/event-types/{eventTypeId}/webhooks \
  --header 'Authorization: <authorization>'
{
  "status": "success",
  "data": [
    {
      "payloadTemplate": "{\"content\":\"A new event has been scheduled\",\"type\":\"{{type}}\",\"name\":\"{{title}}\",\"organizer\":\"{{organizer.name}}\",\"booker\":\"{{attendees.0.name}}\"}",
      "eventTypeId": 123,
      "id": 123,
      "triggers": [
        {}
      ],
      "subscriberUrl": "<string>",
      "active": true,
      "secret": "<string>"
    }
  ]
}

Headers

Authorization
string
required

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

Path Parameters

eventTypeId
number
required

Response

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

"success"

data
object[]
required