news.item_added
Sent when new items are added to a news 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 news feed that was updated |
Example Payload
Complete example of a webhook payload for this event type:
{
"eventType": "news.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.