delivery.confirmed
Delivery completed with proof of delivery (photos, signature)
Senders
baul
Receivers
camino
Data schema
Each field maps to a type hint. | null indicates an optional field.
json
{
"delivery_order_id": "string",
"tracking_token": "string",
"delivered_at": "string (ISO datetime)",
"recipient_name": "string",
"proof_of_delivery_photos": "string[] (URLs)",
"signature_url": "string",
"customer_phone": "string",
"customer_name": "string",
"order_number": "string"
}Example payload
The following is a synthetic payload that matches the schema. Production payloads are signed with HMAC-SHA256 and delivered to each receiver's registered webhook endpoint.
json
{
"delivery_order_id": "example-delivery_order_id",
"tracking_token": "example-tracking_token",
"delivered_at": "2026-04-17T12:00:00.000Z",
"recipient_name": "example-recipient_name",
"proof_of_delivery_photos": [
"example-proof_of_delivery_photos"
],
"signature_url": "example-signature_url",
"customer_phone": "example-customer_phone",
"customer_name": "example-customer_name",
"order_number": "example-order_number"
}See also
Generated from ecosystem-sdk/packages/mcp-server/src/registry/events.json. Do not edit by hand.