> For the complete documentation index, see [llms.txt](https://meetbit.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://meetbit.gitbook.io/docs/notifications/liquid-templating-for-notifications.md).

# Liquid Templating for Notifications

MeetBit Notifications utilize [Liquid Templating](/docs/others/liquid-templating.md) to allow dynamic information within your notifications. The table below outlines the various types of information available to each block within a Notification:

{% hint style="info" %}
Different Notification Triggers have different information available.&#x20;
{% endhint %}

| Notification Trigger                                                   | Model                 | Field Name           | Note                                                                                                          |
| ---------------------------------------------------------------------- | --------------------- | -------------------- | ------------------------------------------------------------------------------------------------------------- |
| **All Triggers**                                                       | Workspace             | tenant               | Workspace branding can be accessed under `tenant.branding`                                                    |
|                                                                        | Primary Domain        | primary\_domain      |                                                                                                               |
| **Meeting Link Scheduled** & **Meeting Link Scheduled Representative** | Event                 | event                |                                                                                                               |
|                                                                        | Customer              | customer             | May not include accurate information if "Save Customer Details" is set to false.                              |
|                                                                        | Meeting Link          | meeting\_link        |                                                                                                               |
|                                                                        | Representative (User) | representative       |                                                                                                               |
|                                                                        | Name                  | name                 | Name input on schedule. May be blank depending on Meeting Link settings.                                      |
|                                                                        | Email                 | email                | Email input on schedule.                                                                                      |
|                                                                        | Contact Number        | contact\_number      | Contact Number input on schedule. May be blank depending on Meeting Link settings.                            |
| **Event Created**                                                      | Event                 | event                |                                                                                                               |
|                                                                        | Name                  | name                 | Name of attendee receiving the notification.                                                                  |
|                                                                        | Email                 | email                | Email of attendee receiving the notification.                                                                 |
| **Event Updated**                                                      | Event                 | event                | Contains the new information about the event.                                                                 |
|                                                                        | Customer              | customer             | May be blank depending if Customer was not attached to event.                                                 |
|                                                                        | Name                  | name                 | Name of attendee receiving the notification.                                                                  |
|                                                                        | Email                 | email                | Email of attendee receiving the notification.                                                                 |
| **Event Canceled**                                                     | Event                 | event                | <p>The following are accessible under this:<br>- <code>cancel\_note</code><br>- <code>canceled\_by</code></p> |
|                                                                        | Customer              | customer             | May be blank depending if Customer was not attached to event.                                                 |
|                                                                        | Name                  | name                 | Name of attendee receiving the notification.                                                                  |
|                                                                        | Email                 | email                | <p>Email of attendee receiving the </p><p>notification.</p>                                                   |
| **Event Reminder**                                                     | Event                 | event                |                                                                                                               |
|                                                                        | Customer              | customer             | May be blank depending if Customer was not attached to event.                                                 |
|                                                                        | Name                  | name                 | Name of attendee receiving the notification.                                                                  |
|                                                                        | Email                 | email                | <p>Email of attendee receiving the </p><p>notification.</p>                                                   |
| **Event Rescheduled**                                                  | Event                 | event                | Contains the new start and end date-times about the event.                                                    |
|                                                                        | Customer              | customer             | May be blank depending if Customer was not attached to event.                                                 |
|                                                                        | Name                  | name                 | Name of attendee receiving the notification.                                                                  |
|                                                                        | Email                 | email                | <p>Email of attendee receiving the </p><p>notification.</p>                                                   |
| **Event Reassigned**                                                   | Event                 | event                |                                                                                                               |
|                                                                        | Customer              | customer             | May be blank depending if Customer was not attached to event.                                                 |
|                                                                        | Name                  | name                 | Name of the attendee receiving the notification.                                                              |
|                                                                        | Email                 | email                | Email of the attendee receiving the notification.                                                             |
| **Event Feedback**                                                     | Event                 | event                |                                                                                                               |
|                                                                        | Customer              | customer             |                                                                                                               |
|                                                                        | Meeting Link          | meeting\_link        | Name of the attendee receiving the notification.                                                              |
|                                                                        | Representative        | representative       | Email of the attendee receiving the notification.                                                             |
|                                                                        | Name                  | name                 | Name of customer                                                                                              |
|                                                                        | Email                 | email                | Email of customer                                                                                             |
|                                                                        | Feedback Form         | feedback\_form       |                                                                                                               |
|                                                                        | Encypted Event ID     | encrypted\_event\_id | Used in creating Feedback Form Link for Customer to access.                                                   |
| **Error Report Received**                                              | Error Report          | error\_report        |                                                                                                               |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://meetbit.gitbook.io/docs/notifications/liquid-templating-for-notifications.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
