
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).