Skip to main content
POST
/
webhook_subscriptions
Create webhook subscription
curl --request POST \
  --url https://api.calendly.com/webhook_subscriptions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "<string>",
  "events": [
    "invitee.created"
  ],
  "organization": "<string>",
  "scope": "user",
  "user": "<string>",
  "group": "<string>",
  "signing_key": "<string>"
}
'
{
  "resource": {
    "uri": "<string>",
    "callback_url": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "retry_started_at": "2023-11-07T05:31:56Z",
    "state": "active",
    "events": [
      "invitee.created"
    ],
    "scope": "user",
    "organization": "<string>",
    "user": "<string>",
    "group": "<string>",
    "creator": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://calendly-preview.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

OAuth 2.1 with PKCE. Request the minimum scopes your integration needs. See the Scopes catalog for the full list.

Body

application/json
url
string<uri>
required
events
enum<string>[]
required
Available options:
invitee.created,
invitee.canceled,
invitee_no_show.created,
invitee_no_show.deleted,
routing_form_submission.created
organization
string<uri>
required
scope
enum<string>
required
Available options:
user,
organization,
group
user
string<uri>
group
string<uri>
signing_key
string

Response

OK

resource
object