event.item_added
Sent when new items are added to an event feed
Event Data Schema
The data field in the webhook payload contains the following structure:
| Field | Type | Required | Description |
|---|---|---|---|
timestamp | number | Yes | Unix timestamp in milliseconds |
feedId | string (uuid) | Yes | ID of the event feed that was updated |
id | string (uuid) | Yes | ID of the event feed item that was added. Use with GET /feeds/events/{feedId}/items/{id} to fetch the full item. |
eventId | string (uuid) | Yes | ID of the event that was added |
Example Payload
Complete example of a webhook payload for this event type. The top-level id is the envelope identifier — stable across retries; use it as your idempotency key. See Webhooks Overview for the full envelope schema.
{
"eventType": "event.item_added",
"timestamp": 1704123456789,
"id": "456e7890-a12b-34c5-d678-901234567890",
"data": {
"timestamp": 1704123456789,
"feedId": "987e6543-e21b-12d3-a456-426614174111",
"eventId": "123e4567-e89b-12d3-a456-426614174000"
}
}
For information about HTTP headers, security verification, and retry policies, see the Webhooks Overview.