Trigger automation with other apps when invitees schedule, cancel, or reschedule events
Our webhook subscription will inform you when invitees book, cancel, or reschedule events. While the process is completely manual, you can use the values within the webhook payload to trigger follow up actions in the internal or custom-built apps you or your team use.
If you want to trigger automations without any development work, learn more about our integration with Zapier and Make.com, which connects Bookafy to apps you use daily.
When an event is scheduled, the
invitee.createdwebhook is triggered.When an event is canceled, the
invitee.canceledwebhook is triggered.When an event is rescheduled, both the
invitee.createdandinvitee.canceledwebhooks are triggered.
To learn more about creating a webhook subscription, see receive scheduled event data in real time with webhook subscriptions.
Webhook payload values
To create your own follow up actions, use the values located within the webhook payload. Some that may be helpful include:
The event value
The event value identifies which payload was triggered as a result of the meeting being scheduled or canceled:
"event": "invitee.created"is triggered when an event is scheduled"event": "invitee.canceled"is triggered when an event is canceled
The status value
The status value identifies if the invitee is attending or not attending the scheduled event
"status": "active"indicates that the invitee will attend the scheduled event"status": "canceled"indicates that the invitee will not attend the scheduled event
The canceled value
The canceled value identifies if the event was canceled
"canceled":falseindicates that the event has not been canceled"canceled": trueindicates that the event has been canceledThe
canceled_byvalue identifies who, either the Calendly user or invitee, canceled the meetingThe
reasonvalue (if provided by the canceler) lists the textual response the canceler entered when canceling the event
The rescheduled value
The rescheduled value identifies if the event has been rescheduled
"rescheduled":trueindicates the event has been rescheduled"rescheduled":falseindicates the event has not been rescheduled
Working with webhooks to analyze data or trigger automation
Put your data to work when you use these guides to receive, understand, and report on Bookafy data when it arrives at an endpoint you specify.