Webhook Payload
Every webhook notification contains three main parts:
The type of event that occurred
When it happened
The detailed event data
Here's the complete structure broken down:
Webhook Payload
Every webhook notification sent consists of three core components:
Event Type - What kind of action occurred (created, cancelled, etc.)
Timestamp - When the action happened
Event Data - The complete details of the booking
type
string
The type of event that triggered the webhook (e.g., event.created,event.rescheduled, event.cancelled
)
created_at
string
ISO 8601 timestamp of when the webhook was generated
data
Event
Contains the detailed event information (see Event Fields below)
Event Fields
The comprehensive event data structure containing all information about an event, including timing, participants, location, and any relevant team details.
id
string
Unique identifier for the event
startDate
string
Start time of the event in ISO 8601 format
duration
number
Duration of the event in minutes
cancelled
boolean
(Optional) Whether the event has been cancelled
eventName
string
Name/title of the event
invite
EventInviteApiResponse
Event invite details
location
Location
(Optional) Location information for the event
hosts
array[Host]
Array of event hosts/organizers
attendees
array[Attendee]
Array of event attendees
team
Team
(Optional) Team information if the event is team-related
Location
Specifies where and how the meeting will take place, including all necessary details for online meetings if applicable.
locationType
string
Type of location (e.g., "online", "in-person")
locationText
string
(Optional) Location text if using a custom location
onlineMeeting
object
(Optional) Online meeting details if applicable
onlineMeeting.url
string
Meeting URL
onlineMeeting.id
string
(Optional) Meeting ID
onlineMeeting.passcode
string
(Optional) Meeting passcode
Attendee
Represents a participant in the meeting, including their contact information and any custom responses they provided during booking.
name
string
(Optional) Attendee's full name
email
string
Attendee's email address
timezone
string
(Optional) Attendee's timezone
phoneNumber
string
(Optional) Attendee's phone number
type
string
Identifies the attendee's role: either invitee
(primary booker) or guest
(additional attendee)
customQuestionAnswers
array[{
question: string,
answer: string
}]
(Optional) Responses to custom booking questions
Host
Represents an organizer or host of the meeting, containing their essential contact information.
Note about team events:
For collective team invites: Contains all team members included in the event
For round robin invites: Contains the selected team member for the event
name
string
(Optional) Host's full name
email
string
Host's email address
Team
For invites related to a team, this contains information about the team associated with the event.
id
string
Unique identifier for the team
name
string
Name of the team
Sample Payload
Last updated