Skip to main content
DELETE
/
deliveries
/
{id}
Delete a delivery
curl --request DELETE \
  --url https://api.cula.tech/tracking/v1/deliveries/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Cula-Org-Id: <cula-org-id>'
{
  "error": {
    "type": "validation_error",
    "code": "missing_header",
    "message": "The Cula-Org-Id header is required. Every request must specify the target organisation.",
    "param": "Cula-Org-Id",
    "request_id": "req_01kqzcjrpyf27tge3pnybq9msk"
  }
}

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

OAuth2 client credentials flow. Exchange your client_id and client_secret for a short-lived access token, then pass it as a Bearer token in the Authorization header.

Headers

Cula-Org-Id
string
required

Organisation ID that scopes this request. The authenticated consumer must be authorized for this organisation. Omitting this header returns 400; passing an unauthorised org returns 403.

Path Parameters

id
string
required

Cula-assigned resource ID in TypeID format (e.g. stp_01kqzcjrpxf27tge33jwvjhkff). Alternatively, pass your external ID prefixed with ext- (e.g. ext-MY-STEP-001). The ext- prefix is unambiguous because TypeIDs use _ separators and never start with ext-.

Response

Delivery deleted.