Triggers let you execute webhooks automatically when changes occur in your collections. They are ideal for synchronizing data with external systems, sending notifications, or running workflows.Documentation Index
Fetch the complete documentation index at: https://docs.jelou.ai/llms.txt
Use this file to discover all available pages before exploring further.

Creating a trigger

Configure the trigger
Fill in the following fields:
- Name — A descriptive name (e.g. “Sync CRM”, “Notify new order”)
- Collection — The collection you want to monitor
- Event — The type of event that fires the webhook
- Webhook Request — The HTTP method and destination URL
- Headers — Custom headers for the request
- Status — Enable or disable the trigger
Available events
| Event | Fires when… |
|---|---|
| Create | A new record is inserted into the collection |
| Update | An existing record is modified |
| Delete | A record is deleted |
Webhook configuration
HTTP method
Select the appropriate HTTP method for your endpoint:| Method | Typical use |
|---|---|
| POST | Send record data to the server (most common) |
| GET | Notify without sending data in the body |
| PUT | Replace a complete resource |
| PATCH | Partially update a resource |
| DELETE | Request deletion of a resource |
Webhook URL
Enter the full URL of the endpoint that will receive the notification (e.g.https://your-api.com/webhooks/datum).