Skip to main content
WEBHOOK
trackingEvent
{
  "id": "evt_01kqzcjrpyf27tgesnxf1hhqqw",
  "type": "incoming_delivery.created",
  "occurred_at": "2026-05-06T19:34:00Z",
  "data": {
    "id": "dlv_01kqzcjrpxf27tge48sdha1emj",
    "external_id": "GC-DEL-N001016013"
  },
  "request_id": "req_01kqzcjrpyf27tge33jwvjhkff",
  "delivery_attempt": 1
}

Documentation Index

Fetch the complete documentation index at: https://docs.cula.tech/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key passed as a Bearer token. Keys are scoped to one organisation and a set of permitted sites. Two keys per scope (primary + secondary) are issued to support zero-downtime rotation.

Authorization: Bearer <api-key>

Body

application/json

The payload Cula sends to your webhook URL when a tracking event occurs. Verify the Cula-Signature header using HMAC-SHA256 with your webhook secret.

id
string
required

Unique event ID.

Example:

"evt_01kqzcjrpyf27tgesnxf1hhqqw"

type
string
required

Event type in resource.action format.

Example:

"incoming_delivery.created"

occurred_at
string<date-time>
required

When the event occurred (UTC).

Example:

"2026-05-06T19:34:00Z"

data
object
required

The affected resource. Contains at minimum id and external_id of the resource that triggered the event.

delivery_attempt
integer
required

Delivery attempt number (starts at 1, increments on retry).

Example:

1

request_id
string | null

The request ID that caused this event, if applicable.

Example:

"req_01kqzcjrpyf27tge33jwvjhkff"

Response

200

Event received successfully. Any 2xx status acknowledges receipt.