Array of delivery objects, newest first.
Event type that triggered the delivery.
Delivery status: "delivered", "failed", "pending", or "exhausted".
Number of delivery attempts made.
ISO 8601 timestamp of successful delivery. null if not yet delivered.
Error message from the last failed attempt. null if no errors.
deliveries[].lastStatusCode
HTTP status code from the last attempt. null if not applicable.
ID of the source object that triggered the event.
Type of the source object (e.g. "monitor").
ISO 8601 timestamp of when the delivery was created.
{
"deliveries": [
{
"id": "142",
"eventType": "tweet.new",
"status": "delivered",
"attempts": 1,
"deliveredAt": "2026-03-05T14:22:01.000Z",
"lastError": null,
"lastStatusCode": 200,
"sourceId": "7",
"sourceType": "monitor",
"createdAt": "2026-03-05T14:22:00.000Z"
},
{
"id": "138",
"eventType": "tweet.reply",
"status": "delivered",
"attempts": 1,
"deliveredAt": "2026-03-05T12:10:01.000Z",
"lastError": null,
"lastStatusCode": 200,
"sourceId": "7",
"sourceType": "monitor",
"createdAt": "2026-03-05T12:10:00.000Z"
},
{
"id": "130",
"eventType": "tweet.new",
"status": "exhausted",
"attempts": 3,
"deliveredAt": null,
"lastError": "Connection refused",
"lastStatusCode": null,
"sourceId": "7",
"sourceType": "monitor",
"createdAt": "2026-03-04T08:45:00.000Z"
}
]
}