GET
/
v2
/
oauth-clients
/
{clientId}
/
webhooks
curl --request GET \
  --url https://api.cal.com/v2/oauth-clients/{clientId}/webhooks \
  --header 'x-cal-secret-key: <x-cal-secret-key>'
{
  "status": "success",
  "data": [
    {
      "payloadTemplate": "{\"content\":\"A new event has been scheduled\",\"type\":\"{{type}}\",\"name\":\"{{title}}\",\"organizer\":\"{{organizer.name}}\",\"booker\":\"{{attendees.0.name}}\"}",
      "oAuthClientId": "<string>",
      "id": 123,
      "triggers": [
        {}
      ],
      "subscriberUrl": "<string>",
      "active": true,
      "secret": "<string>"
    }
  ]
}

Headers

x-cal-secret-key
string
required

OAuth client secret key

Path Parameters

clientId
string
required

Query Parameters

take
number

The number of items to return

skip
number

The number of items to skip

Response

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

"success"

data
object[]
required