> ## Documentation Index
> Fetch the complete documentation index at: https://meetbit.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Available Events

> The available events that trigger webhooks

Many events within the MeetBit Platform can trigger webhooks. This section outlines each one and the data each webhook includes in the request.

<Note>
  Webhooks only include the minimum amount of data possible in each request. This is done to reduce payload size, improve data accuracy and increase security. Your system is expected to use the [MeetBit Public API](/introduction) to query all other information your system may need to act based on the initial webhook request.
</Note>

## Meeting Link Scheduled

Sent when a Meeting Link is scheduled by a Customer.

**Event Type:** `meeting_links.scheduled`

**Data Attributes:**

<ParamField body="id" type="number" required>
  ID of the Meeting Link
</ParamField>

<ParamField body="event_id" type="number" required>
  ID of the Event created from the Meeting Link
</ParamField>

<ParamField body="calendar_id" type="number" required>
  ID of the Calendar the Event belongs to
</ParamField>

<ParamField body="name" type="string">
  Name provided by the customer when scheduling
</ParamField>

<ParamField body="email" type="string" required>
  Email provided by the customer when scheduling
</ParamField>

<ParamField body="contact_number" type="string">
  Contact number provided by the customer when scheduling in E.164 format
</ParamField>

## Event Created

Sent when an Event is created (regardless of method).

**Event Type:** `events.created`

**Data Attributes:**

<ParamField body="id" type="number" required>
  ID of the Event
</ParamField>

<ParamField body="calendar_id" type="number" required>
  ID of the Calendar the Event belongs to
</ParamField>

## Event Updated

Sent when an Event is updated (regardless of method).

**Event Type:** `events.updated`

**Data Attributes:**

<ParamField body="id" type="number" required>
  ID of the Event
</ParamField>

<ParamField body="calendar_id" type="number" required>
  ID of the Calendar the Event belongs to
</ParamField>

## Event Canceled

Sent when an Event is canceled (regardless of method).

**Event Type:** `events.deleted`

**Data Attributes:**

<ParamField body="id" type="number" required>
  ID of the Event
</ParamField>

<ParamField body="calendar_id" type="number" required>
  ID of the Calendar the Event belongs to
</ParamField>

## Event Rescheduled

Sent when an Event is rescheduled (regardless of method).

**Event Type:** `events.rescheduled`

**Data Attributes:**

<ParamField body="id" type="number" required>
  ID of the Event
</ParamField>

<ParamField body="calendar_id" type="number" required>
  ID of the Calendar the Event belongs to
</ParamField>

## Event Reassigned

Sent when an Event is reassigned (regardless of method).

**Event Type:** `events.created`

**Data Attributes:**

<ParamField body="id" type="number" required>
  ID of the Event
</ParamField>

<ParamField body="calendar_id" type="number" required>
  ID of the Calendar the Event belongs to
</ParamField>
