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 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
{
  "account_email": "[email protected]",
  "currency": "EUR",
  "event_participants": [
    {
      "EMAIL": "[email protected]",
      "FIRSTNAME": "john",
      "LASTNAME": "doe"
    }
  ],
  "meeting_address": "12345 CityAB",
  "meeting_end_timestamp": "2025-06-10T07:09:01.696Z",
  "meeting_location": "MeetingpointA",
  "meeting_name": "Testmeeting",
  "meeting_notes": "Meeting-notes",
  "meeting_start_timestamp": "2025-06-10T07:09:01.696Z",
  "price": 123,
  "questions_and_answers": [
    {
      "answer": "Answer to the question",
      "question": "What is the question?"
    }
  ]
}

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
{
  "account_email": "[email protected]",
  "currency": "EUR",
  "event_participants": [
    {
      "EMAIL": "[email protected]",
      "FIRSTNAME": "john",
      "LASTNAME": "doe"
    }
  ],
  "meeting_address": "12345 CityAB",
  "meeting_end_timestamp": "2025-06-10T07:09:01.696Z",
  "meeting_location": "MeetingpointA",
  "meeting_name": "Testmeeting",
  "meeting_notes": "Meeting-notes",
  "meeting_start_timestamp": "2025-06-10T07:09:01.696Z",
  "price": 123,
  "questions_and_answers": [
    {
      "answer": "Answer to the question",
      "question": "What is the question?"
    }
  ]
}

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
{
  "account_email": "[email protected]",
  "currency": "EUR",
  "event_participants": [
    {
      "EMAIL": "[email protected]",
      "FIRSTNAME": "john",
      "LASTNAME": "doe"
    }
  ],
  "meeting_address": "12345 CityAB",
  "meeting_end_timestamp": "2025-06-10T07:09:01.696Z",
  "meeting_location": "MeetingpointA",
  "meeting_name": "Testmeeting",
  "meeting_notes": "Meeting-notes",
  "meeting_start_timestamp": "2025-06-10T07:09:01.696Z",
  "price": 123,
  "questions_and_answers": [
    {
      "answer": "Answer to the question",
      "question": "What is the question?"
    }
  ]
}

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
{
  "account_name": {
    "family_name": "doe",
    "given_name": "john"
  },
  "duration_seconds": 123,
  "is_forwarded": true,
  "phone_line": "+441400800008",
  "phone_line_name": "My number",
  "phone_number": "+14002007868",
  "recording": true,
  "type": "answered"
}