You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/developing/guides/automation/webhooks.mdx
+153-1Lines changed: 153 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,9 @@ To create a new webhook subscription, visit `/settings/developer/webhooks` and p
34
34
- `Form Submitted`
35
35
- `Meeting Ended`
36
36
- `Instant Meeting Created`
37
+
- `Booking No-show Updated`
38
+
- `After Hosts Didn't Join Cal Video`
39
+
- `After Guests Didn't Join Cal Video`
37
40
</Step>
38
41
<Steptitle="Secret">
39
42
You can provide a secret key with this webhook to [verify it](/docs/core-features/webhooks#verifying-the-authenticity-of-the-received-payload) on the subscriber URL when receiving a payload. This helps confirm whether the payload is authentic or has been tampered with. You can leave it blank if you don't wish to secure the webhook with a secret key.
@@ -144,6 +147,155 @@ To create a new webhook subscription, visit `/settings/developer/webhooks` and p
144
147
145
148
```
146
149
150
+
### Booking No-show Updated webhook payload
151
+
152
+
This webhook is triggered when an attendee is manually marked or unmarked as no-show on the `/bookings/past` page.
153
+
154
+
**Example payload when marking an attendee as no-show:**
These webhooks are triggered **automatically** when hosts or guests don't join a Cal Video meeting within the configured time after the booking starts. Unlike `BOOKING_NO_SHOW_UPDATED` which requires manual action, these are detected automatically by checking Cal Video participant data.
197
+
198
+
<Note>
199
+
These webhooks only work for bookings that use Cal Video as the meeting location.
200
+
</Note>
201
+
202
+
**Example payload when host didn't join (`AFTER_HOSTS_CAL_VIDEO_NO_SHOW`):**
0 commit comments