Meetings and phone webhooks
In this page you find the currently supported Meeting and Phone webhook events and their respective payloads.
Meeting webhook events
Phone webhook events
Meeting booked
| Attribute name | Datatype | Description |
|---|---|---|
account_email | String | Email of user |
currency | String | Currency code in upper-case |
event_participants.EMAIL | String | Email of participants |
event_participants.FIRSTNAME | String | Firstname of participants |
event_participants.LASTNAME | String | Lastname of participants |
meeting_address | String | Address of the meeting in-case of in person meetings |
meeting_end_timestamp | String | Time and date of meeting end |
meeting_location | String | Location of meeting |
meeting_name | String | Name of meeting |
meeting_notes | String | Notes in meeting |
meeting_start_timestamp | String | Time and date of meeting start |
price | Numeric | Meeting cost |
questions_and_answers.answer | String | List of answers in the meeting |
questions_and_answers.question | String | List 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 name | Datatype | Description |
|---|---|---|
account_email | String | Email of user |
currency | String | Currency code in upper-case |
event_participants.EMAIL | String | Email of participants |
event_participants.FIRSTNAME | String | Firstname of participants |
event_participants.LASTNAME | String | Lastname of participants |
meeting_address | String | Address of the meeting in-case of in person meetings |
meeting_end_timestamp | String | Time and date of meeting end |
meeting_location | String | Location of meeting |
meeting_name | String | Name of meeting |
meeting_notes | String | Notes in meeting |
meeting_start_timestamp | String | Time and date of meeting start |
price | Numeric | Meeting cost |
questions_and_answers.answer | String | List of answers in the meeting |
questions_and_answers.question | String | List 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 name | Datatype | Description |
|---|---|---|
account_email | String | Email of user |
currency | String | Currency code in upper-case |
event_participants.EMAIL | String | Email of participants |
event_participants.FIRSTNAME | String | Firstname of participants |
event_participants.LASTNAME | String | Lastname of participants |
meeting_address | String | Address of the meeting in-case of in person meetings |
meeting_end_timestamp | String | Time and date of meeting end |
meeting_location | String | Location of meeting |
meeting_name | String | Name of meeting |
meeting_notes | String | Notes in meeting |
meeting_start_timestamp | String | Time and date of meeting start |
price | Numeric | Meeting cost |
questions_and_answers.answer | String | List of answers in the meeting |
questions_and_answers.question | String | List 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 name | Datatype | Description |
|---|---|---|
account_name.family_name | String | Family name of user |
account_name.given_name | String | Given name of user |
duration_seconds | Numeric | Call duration in seconds |
is_forwarded | Bool | Indicates if the call was forwarded or not |
phone_line | String | Phone line of user |
phone_line_name | String | Name of the phone line |
phone_number | String | Phone number of the contact |
recording | Bool | Indicates if a recording of the call exists or not |
type | String | Type 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 }