Skip to main content

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:

FieldTypeRequiredDescription
timestampnumberYesUnix timestamp in milliseconds
feedIdstring (uuid)YesID of the event feed that was updated

Example Payload

Complete example of a webhook payload for this event type:

{
"eventType": "event.item_added",
"timestamp": 1704123456789,
"data": {
"timestamp": 1704123456789,
"feedId": "987e6543-e21b-12d3-a456-426614174111"
}
}

For information about HTTP headers, security verification, and retry policies, see the Webhooks Overview.