Meetings and phone webhooks

This page lists the currently supported Meeting and Phone webhook events and their payloads.

Meeting webhook events

Phone webhook events

Meeting booked

Attribute nameDatatypeDescription
account_emailStringEmail of user
currencyStringCurrency code in upper-case
event_participants.EMAILStringEmail of participants
event_participants.FIRSTNAMEStringFirstname of participants
event_participants.LASTNAMEStringLastname of participants
meeting_addressStringAddress of the meeting in-case of in person meetings
meeting_end_timestampStringTime and date of meeting end
meeting_locationStringLocation of meeting
meeting_nameStringName of meeting
meeting_notesStringNotes in meeting
meeting_start_timestampStringTime and date of meeting start
priceNumericMeeting cost
questions_and_answers.answerStringList of answers in the meeting
questions_and_answers.questionStringList of questions asked in the meeting
1{
2 "account_email": "john@example.com",
3 "currency": "EUR",
4 "event_participants": [
5 {
6 "EMAIL": "john@example.coo",
7 "FIRSTNAME": "john",
8 "LASTNAME": "doe"
9 }
10 ],
11 "meeting_address": "12345 CityAB",
12 "meeting_end_timestamp": "2025-06-10T07:09:01.696Z",
13 "meeting_location": "MeetingpointA",
14 "meeting_name": "Testmeeting",
15 "meeting_notes": "Meeting-notes",
16 "meeting_start_timestamp": "2025-06-10T07:09:01.696Z",
17 "price": 123,
18 "questions_and_answers": [
19 {
20 "answer": "Answer to the question",
21 "question": "What is the question?"
22 }
23 ]
24}

Meeting started

Attribute nameDatatypeDescription
account_emailStringEmail of user
currencyStringCurrency code in upper-case
event_participants.EMAILStringEmail of participants
event_participants.FIRSTNAMEStringFirstname of participants
event_participants.LASTNAMEStringLastname of participants
meeting_addressStringAddress of the meeting in-case of in person meetings
meeting_end_timestampStringTime and date of meeting end
meeting_locationStringLocation of meeting
meeting_nameStringName of meeting
meeting_notesStringNotes in meeting
meeting_start_timestampStringTime and date of meeting start
priceNumericMeeting cost
questions_and_answers.answerStringList of answers in the meeting
questions_and_answers.questionStringList of questions asked in the meeting
1{
2 "account_email": "john@example.com",
3 "currency": "EUR",
4 "event_participants": [
5 {
6 "EMAIL": "john@example.coo",
7 "FIRSTNAME": "john",
8 "LASTNAME": "doe"
9 }
10 ],
11 "meeting_address": "12345 CityAB",
12 "meeting_end_timestamp": "2025-06-10T07:09:01.696Z",
13 "meeting_location": "MeetingpointA",
14 "meeting_name": "Testmeeting",
15 "meeting_notes": "Meeting-notes",
16 "meeting_start_timestamp": "2025-06-10T07:09:01.696Z",
17 "price": 123,
18 "questions_and_answers": [
19 {
20 "answer": "Answer to the question",
21 "question": "What is the question?"
22 }
23 ]
24}

Meeting cancelled

Attribute nameDatatypeDescription
account_emailStringEmail of user
currencyStringCurrency code in upper-case
event_participants.EMAILStringEmail of participants
event_participants.FIRSTNAMEStringFirstname of participants
event_participants.LASTNAMEStringLastname of participants
meeting_addressStringAddress of the meeting in-case of in person meetings
meeting_end_timestampStringTime and date of meeting end
meeting_locationStringLocation of meeting
meeting_nameStringName of meeting
meeting_notesStringNotes in meeting
meeting_start_timestampStringTime and date of meeting start
priceNumericMeeting cost
questions_and_answers.answerStringList of answers in the meeting
questions_and_answers.questionStringList of questions in the meeting
1{
2 "account_email": "john@example.com",
3 "currency": "EUR",
4 "event_participants": [
5 {
6 "EMAIL": "john@example.coo",
7 "FIRSTNAME": "john",
8 "LASTNAME": "doe"
9 }
10 ],
11 "meeting_address": "12345 CityAB",
12 "meeting_end_timestamp": "2025-06-10T07:09:01.696Z",
13 "meeting_location": "MeetingpointA",
14 "meeting_name": "Testmeeting",
15 "meeting_notes": "Meeting-notes",
16 "meeting_start_timestamp": "2025-06-10T07:09:01.696Z",
17 "price": 123,
18 "questions_and_answers": [
19 {
20 "answer": "Answer to the question",
21 "question": "What is the question?"
22 }
23 ]
24}

Phone webhook events

Call finished

Attribute nameDatatypeDescription
account_name.family_nameStringFamily name of user
account_name.given_nameStringGiven name of user
duration_secondsNumericCall duration in seconds
is_forwardedBoolIndicates if the call was forwarded or not
phone_lineStringPhone line of user
phone_line_nameStringName of the phone line
phone_numberStringPhone number of the contact
recordingBoolIndicates if a recording of the call exists or not
typeStringType of the call. Possible values are: answered, failed/cancelled, missed, missed voicemail, connected and not connected
1{
2 "account_name": {
3 "family_name": "doe",
4 "given_name": "john"
5 },
6 "duration_seconds": 123,
7 "is_forwarded": true,
8 "phone_line": "+441400800008",
9 "phone_line_name": "My number",
10 "phone_number": "+14002007868",
11 "recording": true,
12 "type": "answered"
13}