-
Notifications
You must be signed in to change notification settings - Fork 11.6k
Description
n8n Version
2.2.4
Self hosted
The no-show updated webhook payload does not send any details apart from the attendee email in production. Using this to n8n for example.
This is the case with the default payload or when specifying everything manually, such as:
{ "triggerEvent": "{{triggerEvent}}", "createdAt": "{{createdAt}}", "type": "{{type}}", "title": "{{title}}", "startTime": "{{startTime}}", "endTime": "{{endTime}}", "description": "{{description}}", "location": "{{location}}", "uid": "{{uid}}", "rescheduleUid": "{{rescheduleUid}}", "cancellationReason": "{{cancellationReason}}", "rejectionReason": "{{rejectionReason}}", "organizer.name": "{{organizer.name}}", "organizer.email": "{{organizer.email}}", "organizer.timezone": "{{organizer.timezone}}", "organizer.language.locale": "{{organizer.language.locale}}", "organizer.username": "{{organizer.username}}", "organizer.usernameInOrg": "{{organizer.usernameInOrg}}", "attendees.0.name": "{{attendees.0.name}}", "attendees.0.email": "{{attendees.0.email}}", "attendees.0.timeZone": "{{attendees.0.timeZone}}", "attendees.0.language.locale": "{{attendees.0.language.locale}}" }
The ping test for the webhook data returns the name of the attendee, email, start and end times correctly but the actual production usage just returns as below:
Example:
`[
{
"headers": {
"host": "192.168.1.200:5678",
"content-type": "application/json",
"x-cal-signature-256": "no-secret-provided",
"x-cal-webhook-version": "2021-10-20",
"accept": "/",
"accept-language": "*",
"sec-fetch-mode": "cors",
"user-agent": "node",
"accept-encoding": "br, gzip, deflate",
"x-forwarded-for": "192.168.1.1",
"x-forwarded-host": "n8n.techbuddy.au",
"x-forwarded-server": "n8n.techbuddy.au",
"content-length": "507",
"connection": "Keep-Alive"
},
"params": {
},
"query": {
},
"body": {
"triggerEvent": "BOOKING_NO_SHOW_UPDATED",
"createdAt": "2026-01-19T06:40:22.615Z",
"type": "",
"title": "",
"startTime": "",
"endTime": "",
"description": "",
"location": "",
"uid": "",
"rescheduleUid": "",
"cancellationReason": "",
"rejectionReason": "",
"organizer.name": "",
"organizer.email": "",
"organizer.timezone": "",
"organizer.language.locale": "",
"organizer.username": "",
"organizer.usernameInOrg": "",
"attendees.0.name": "",
"attendees.0.email": "[email protected]",
"attendees.0.timeZone": "",`