Skip to content

Delivery export failed

POST

POSTed to your webhook URL when a delivery export fails. See the Webhooks tag for the envelope shape and signing scheme.

Media typeapplication/json

Canonical envelope posted to your webhook when a delivery export fails.

object
id
required
string
type
required
string
Allowed values: delivery.failed
created_at
required
string format: date-time
api_version
required
string
org_id
required
string
subject
required

Identifies the delivery this event is about.

object
kind
required
string
Allowed values: delivery
id
required
string
name
required
string | null
data
required

status, destination, and failure_reason are always present; the remaining fields vary by delivery path — treat any field not listed here as additive.

object
status
required
string
Allowed values: failed
destination
required
string
Allowed values: download liveramp narrative
failure_reason
required

Human-readable reason the delivery failed.

string
key
additional properties
any
links
required

Reserved for future related-resource links. Currently always empty.

object
key
additional properties
any
Example
{
"id": "evt_4d5e6f7a8b9c0d1e2f1a2b3c",
"type": "delivery.failed",
"created_at": "2026-08-26T18:04:12.000Z",
"api_version": "2026-08-06",
"org_id": "org_xyz",
"subject": {
"kind": "delivery",
"id": "del_abc123",
"name": null
},
"data": {
"status": "failed",
"destination": "download",
"failure_reason": "Insufficient matched records to produce output."
},
"links": {}
}

Your endpoint acknowledged the event.