Skip to content

Delivery export completed

POST

POSTed to your webhook URL when a delivery export finishes and download URLs (or an equivalent destination confirmation) are available. subject.id is the delivery id. See the Webhooks tag for the envelope shape and signing scheme.

Media typeapplication/json

Canonical envelope posted to your webhook when a delivery export finishes and download URLs (or an equivalent destination confirmation) are available.

object
id
required
string
type
required
string
Allowed values: delivery.completed
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 and destination are always present; the remaining fields vary by destination and delivery path — treat any field not listed here as additive.

object
status
required
string
Allowed values: completed
destination
required
string
Allowed values: download liveramp narrative
output_record_count
integer
completed_at
string format: date-time
output_format
string
output_compression
string
output_bytes
integer
download_urls

Signed download URLs (valid 24 hours). Present for destination=download only.

Array<string>
key
additional properties
any
links
required

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

object
key
additional properties
any
Example
{
"id": "evt_3c4d5e6f7a8b9c0d1e2f1a2b",
"type": "delivery.completed",
"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": "completed",
"destination": "download",
"output_record_count": 1200000,
"completed_at": "2026-08-26T18:04:10.000Z",
"output_format": "csv",
"output_compression": "gzip",
"output_bytes": 48213099,
"download_urls": [
"https://storage.googleapis.com/cf-exports/org_xyz/del_abc123/output.csv?X-Goog-Signature=..."
]
},
"links": {}
}

Your endpoint acknowledged the event.