Webhook map
eventTypesupdated(eventTypes.updated)
inviteescanceled(invitees.canceled)created(invitees.created)noShow(invitees.noShow)
routingFormssubmission(routingForms.submission)
usersupdated(users.updated)
HTTP handler setup
app/api/webhook/route.ts
Events
Event Types
Updated
eventTypes.updated
An event type was updated
Payload
| Name | Type | Required | Description |
|---|---|---|---|
event | event_type.updated | Yes | — |
time | string | Yes | — |
payload | object | Yes | — |
payload full type
payload full type
Response data full type
Response data full type
webhookHooks example
Invitees
Canceled
invitees.canceled
An invitee canceled a meeting
Payload
| Name | Type | Required | Description |
|---|---|---|---|
event | invitee.canceled | Yes | — |
time | string | Yes | — |
payload | object | Yes | — |
payload full type
payload full type
Response data full type
Response data full type
webhookHooks example
Created
invitees.created
An invitee booked a meeting
Payload
| Name | Type | Required | Description |
|---|---|---|---|
event | invitee.created | Yes | — |
time | string | Yes | — |
payload | object | Yes | — |
payload full type
payload full type
Response data full type
Response data full type
webhookHooks example
No Show
invitees.noShow
An invitee was marked as a no-show
Payload
| Name | Type | Required | Description |
|---|---|---|---|
event | invitee_no_show.created | Yes | — |
time | string | Yes | — |
payload | object | Yes | — |
payload full type
payload full type
Response data full type
Response data full type
webhookHooks example
Routing Forms
Submission
routingForms.submission
A routing form submission was created
Payload
| Name | Type | Required | Description |
|---|---|---|---|
event | routing_form_submission.created | Yes | — |
time | string | Yes | — |
payload | object | Yes | — |
payload full type
payload full type
Response data full type
Response data full type
webhookHooks example
Users
Updated
users.updated
A user was updated
Payload
| Name | Type | Required | Description |
|---|---|---|---|
event | user.updated | Yes | — |
time | string | Yes | — |
payload | object | Yes | — |
payload full type
payload full type
Response data full type
Response data full type
webhookHooks example