Skip to main content
GET
/
delivery-configs
/
{id}
/
versions
/
{version_id}
Get a specific config version
curl --request GET \
  --url https://api.cula.tech/tracking/v1/delivery-configs/{id}/versions/{version_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Cula-Org-Id: <cula-org-id>'
{
  "id": "dcv_01kqzcjrpyf27tgej0x1ke3msk",
  "config_id": "dlc_01kqzcjrpyf27tgegxm6bxfdhb",
  "next_version_id": null,
  "name": "Corn Incoming Delivery",
  "allow_multiple_legs": false,
  "published_at": "2026-01-15T08:00:00Z",
  "data_point_configs": [
    {
      "id": "dpc_01kqzcjrpyf27tgey1hkzm2wxp",
      "name": "Driver name",
      "type": "short_text",
      "is_mandatory": false,
      "accepts_input": true
    },
    {
      "id": "dpc_01kqzcjrpyf27tgey3a94z1yhz",
      "name": "Lot ID",
      "type": "short_text",
      "is_mandatory": true,
      "accepts_input": true
    },
    {
      "id": "dpc_01kqzcjrpyf27tgey5b05a2cbs",
      "name": "Scale ticket number",
      "type": "short_text",
      "is_mandatory": true,
      "accepts_input": true
    }
  ],
  "payload_config": {
    "id": "mcc_01kqzcjrpyf27tgenyy2stmy5z",
    "name": "Corn Payload",
    "data_point_configs": [
      {
        "id": "dpc_01kqzcjrpyf27tgey7c16b3dct",
        "name": "Weight gross",
        "type": "amount",
        "is_mandatory": true,
        "accepts_input": true,
        "amount_base": "weight"
      },
      {
        "id": "dpc_01kqzcjrpyf27tgey9d27c4edu",
        "name": "Weight net",
        "type": "amount",
        "is_mandatory": true,
        "accepts_input": false
      },
      {
        "id": "dpc_01kqzcjrpyf27tgeybd38d5fev",
        "name": "Moisture content",
        "type": "percentage",
        "is_mandatory": true,
        "accepts_input": true,
        "validation": {
          "min": 0,
          "max": 0.5
        }
      }
    ]
  },
  "selectable_transport_emission_log_configs": [
    {
      "id": "elc_01kqzcjrpyf27tgekeyq3qzm7d",
      "name": "Road Transport (Diesel)",
      "transport_mode": "road",
      "data_point_configs": []
    }
  ],
  "default_transport_emission_log_config_id": "elc_01kqzcjrpyf27tgekeyq3qzm7d"
}

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-.

version_id
string
required

Config version ID.

Response

Config version detail.

A published version of a delivery config with inline data point configs, payload config, and transport emission log configs.

id
string
required

Config version ID.

Example:

"dcv_01kqzcjrpyf27tgej0x1ke3msk"

config_id
string
required

Parent config ID.

Example:

"dlc_01kqzcjrpyf27tgegxm6bxfdhb"

name
string
required

Human-readable name of this config version.

Example:

"Corn Incoming Delivery"

published_at
string<date-time>
required

When this version was published.

Example:

"2026-01-15T08:00:00Z"

data_point_configs
object[]
required

Delivery-level data point configs. Use these id values as config_id in the top-level data_points array when creating a delivery.

payload_config
object
required

Payload container config. Describes the data points expected on each payload container in payload[].data_points.

selectable_transport_emission_log_configs
object[]
required

Transport emission log configs that can be selected for delivery legs via selected_emission_log_config_id.

next_version_id
string | null

ID of the next version in the chain. Null if this is the active (latest published) version.

Example:

null

allow_multiple_legs
boolean

Whether deliveries using this config can have more than one leg.

Example:

false

default_transport_emission_log_config_id
string | null

ID of the default transport emission log config. References one of the items in selectable_transport_emission_log_configs. Used when the leg omits selected_emission_log_config_id.

Example:

"elc_01kqzcjrpyf27tgekeyq3qzm7d"