Sign in

Create webhook subscription

documented

Create a webhook subscription to receive real-time event payloads.

POST /webhook_subscriptionsWebhooksno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.calendly.com/webhook_subscriptions" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"url": "{{$endpoint_url}}", "events": ["{{$event1}}", "{{$event2}}", "{{$event3}}"], "organization": "https://api.calendly.com/organizations/{{$organization_uuid}}", "scope": "{{$scope}}"}'
# Source: Calendly Developer Docs — Create a Webhook Subscription (POST /webhook_subscriptions)
Create webhook subscription · Calendly · OpenIntegrations