Download OpenAPI specification:Download
Manage orders, products, origins, and value chains for supply chain transparency and compliance.
Returns a paginated list of EUDR Due Diligence Statements for the authenticated company. Each DDS includes its identifier, status, traced orders, and submission details.
| created_at | string <date-time> |
| created_at__gte | string <date-time> |
| created_at__lte | string <date-time> |
| dds_identifier | string |
| dds_identifier__icontains | string |
| dds_identifier__in | Array of strings Multiple values may be separated by commas. |
| id | integer |
| id__exclude_in | Array of integers Exclude DDSs with any of the given IDs (CSV) |
| id__in | Array of integers Multiple values may be separated by commas. |
| limit | integer Number of results to return per page. |
| object_pulse_identifier | string |
| offset | integer The initial index from which to return the results. |
| ordering | string Which field to use when ordering the results. |
| orders__in | Array of integers Only DDSs with an attachment to any of these order ids (CSV). |
| products__in | Array of integers Only DDSs with an attachment to any of these product ids (CSV). |
| search | string A search term. |
| status | string Enum: "complete" "draft" Lifecycle status. EUDR/EUTR are always COMPLETE; PPWR starts as DRAFT and transitions to COMPLETE when the FE PATCHes after the data-room survey submits.
|
| status__in | Array of strings Multiple values may be separated by commas. |
| type | string Enum: "EUDR" "EUTR" "PPWR" Type of Due Diligence Statement (EUDR, EUTR, PPWR)
|
| type__in | Array of strings Multiple values may be separated by commas. |
{- "count": 123,
- "results": [
- {
- "id": 0,
- "type": "EUDR",
- "status": "draft",
- "dds_identifier": "string",
- "dds_data": null,
- "orders": [
- 0
], - "products": [
- 0
], - "assessment_run_ids": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null,
- "pulse_params": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
]
}Create a new EUDR Due Diligence Statement. Orders can be traced to the DDS afterwards using the traces/orders endpoint.
| type | string Enum: "EUDR" "EUTR" "PPWR" Type of Due Diligence Statement (EUDR, EUTR, PPWR)
|
| status | string Enum: "draft" "complete" Lifecycle status. EUDR/EUTR are always COMPLETE; PPWR starts as DRAFT and transitions to COMPLETE when the FE PATCHes after the data-room survey submits.
|
| dds_identifier | string |
| orders | Array of integers |
| products | Array of integers Products attached to a PPWR DoC. |
| assessment_run_ids | Array of strings <uuid> [ items <uuid > ] assessment_run_id UUIDs that support this PPWR DoC. Required and non-empty when type=PPWR. |
| excluded_propagation_identifiers | any |
{- "type": "EUDR",
- "status": "draft",
- "dds_identifier": "string",
- "orders": [
- 0
], - "products": [
- 0
], - "assessment_run_ids": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "excluded_propagation_identifiers": null
}{- "id": 0,
- "type": "EUDR",
- "status": "draft",
- "dds_identifier": "string",
- "dds_data": null,
- "orders": [
- 0
], - "products": [
- 0
], - "assessment_run_ids": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null,
- "pulse_params": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}Returns a single DDS by ID with full detail, including nested detail for its actively attached orders (orders_detail) and products (products_detail).
| id required | integer A unique integer value identifying this Due Diligence Statement. |
{- "id": 0,
- "type": "EUDR",
- "status": "draft",
- "dds_identifier": "string",
- "dds_data": null,
- "orders": [
- 0
], - "products": [
- 0
], - "assessment_run_ids": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null,
- "pulse_params": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "orders_detail": [
- {
- "id": 0,
- "type": "order",
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "buyer_company_id": 0,
- "seller_company_id": 0,
- "order_created_at": "2019-08-24",
- "order_arrival_at": "2019-08-24",
- "buyer_company_status": "draft",
- "seller_company_status": "draft",
- "assessment_status": "pending"
}
], - "products_detail": [
- {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
]
}Partially update an existing DDS. Only status can be changed; any other field in the payload is rejected.
| id required | integer A unique integer value identifying this Due Diligence Statement. |
| type | string Enum: "EUDR" "EUTR" "PPWR" Type of Due Diligence Statement (EUDR, EUTR, PPWR)
|
| status | string Enum: "draft" "complete" Lifecycle status. EUDR/EUTR are always COMPLETE; PPWR starts as DRAFT and transitions to COMPLETE when the FE PATCHes after the data-room survey submits.
|
| dds_identifier | string |
| orders | Array of integers |
| products | Array of integers Products attached to a PPWR DoC. |
| assessment_run_ids | Array of strings <uuid> [ items <uuid > ] assessment_run_id UUIDs that support this PPWR DoC. Required and non-empty when type=PPWR. |
| excluded_propagation_identifiers | any |
{- "type": "EUDR",
- "status": "draft",
- "dds_identifier": "string",
- "orders": [
- 0
], - "products": [
- 0
], - "assessment_run_ids": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "excluded_propagation_identifiers": null
}{- "id": 0,
- "type": "EUDR",
- "status": "draft",
- "dds_identifier": "string",
- "dds_data": null,
- "orders": [
- 0
], - "products": [
- 0
], - "assessment_run_ids": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null,
- "pulse_params": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}List orders available for tracing to Due Diligence Statements
| exclude_dds | string Exclude orders already traced to DDS ID(s). Supports single ID or comma-separated list (e.g., '1' or '1,2,3') |
| limit | integer Number of results to return per page. |
| offset | integer The initial index from which to return the results. |
| ordering | string Which field to use when ordering the results. |
| search | string A search term. |
{- "count": 123,
- "results": [
- {
- "results": [
- {
- "id": 0,
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "order_created_at": "2019-08-24T14:15:22Z",
- "type": "string"
}
], - "count": 0,
}
]
}Trace orders to Due Diligence Statement(s) (adds to existing orders)
| dds_id required | Array of integers DDS ID or list of DDS IDs to trace orders to (accepts single integer or array) |
| order_id required | Array of integers Order ID or list of order IDs to trace to the DDS(s) (accepts single integer or array) |
{- "dds_id": [
- 0
], - "order_id": [
- 0
]
}{- "results": [
- {
- "dds_id": 0,
- "added_orders": [
- 0
], - "total_orders": 0,
- "message": "string"
}
], - "summary": {
- "total_dds_processed": 0,
- "total_orders_added": 0
}
}Create multiple information requests in bulk
required | Array of objects (InformationRequestItemRequest) [ 1 .. 100 ] items List of information requests to create | ||||
Array ([ 1 .. 100 ] items)
| |||||
{- "information_requests": [
- {
- "order_id": 0,
- "value_chain_id": 0
}
]
}{- "message": "Bulk information requests processed",
- "results": {
- "summary": {
- "total_information_requests": 3,
- "processed": 2,
- "failed": 1
}, - "processed": [
- {
- "index": 0,
- "order_id": 123,
- "value_chain_id": null,
- "invitation_action": "send_invitation"
}, - {
- "index": 2,
- "order_id": null,
- "value_chain_id": 456,
- "invitation_action": "send_invitation"
}
], - "failed": [
- {
- "index": 1,
- "data": {
- "order_id": 999
}, - "error": "Order not found or not accessible"
}
]
}
}Returns a paginated list of supply chain orders for the authenticated company. Each order includes its type (buying/selling), buyer and seller IDs, value chain association, and nested order items with product details. Required filter: order_action (buying|selling) — determines whether to return orders where the authenticated company is the buyer or seller. Optional filters: type, buyer_company_status, seller_company_status, assessment_status, value_chain, date ranges (order_created_at, order_arrival_at), border_cross_country_code, tags, item product details (SKU, name, commodity, composition), item volume/unit, item external ID, or passing/failing percentage. Use search to match buyer_external_id, seller_external_id, or tag names.
| assessment_status | string Enum: "failing" "in_progress" "mitigated" "passing" "pending"
|
| assessment_status__in | Array of strings Multiple values may be separated by commas. |
| border_cross_country_code | string |
| border_cross_country_code__in | Array of strings Multiple values may be separated by commas. |
| buyer_company_status | string Enum: "closed" "completed" "draft" "ready_for_review" "statement_ready" "waiting_for_supplier"
|
| buyer_company_status__in | Array of strings Multiple values may be separated by commas. |
| failing_percentage_gte | number <double> Filter by minimum failing percentage (0-100) |
| id | integer |
| id__in | Array of integers Multiple values may be separated by commas. |
| items__buyer_product | integer |
| items__buyer_product__commodity | string or null Enum: "cattle" "cocoa" "coffee" "palm_oil" "rubber" "soya" "wood"
|
| items__buyer_product__commodity__in | Array of strings Multiple values may be separated by commas. |
| items__buyer_product__composition | string Enum: "composite" "simple"
|
| items__buyer_product__composition__in | Array of strings Multiple values may be separated by commas. |
| items__buyer_product__in | Array of integers Multiple values may be separated by commas. |
| items__buyer_product__isnull | boolean |
| items__buyer_product__name | string |
| items__buyer_product__name__endswith | string |
| items__buyer_product__name__icontains | string |
| items__buyer_product__name__startswith | string |
| items__buyer_product__sku | string |
| items__buyer_product__sku__endswith | string |
| items__buyer_product__sku__icontains | string |
| items__buyer_product__sku__startswith | string |
| items__external_id | string |
| items__external_id__endswith | string |
| items__external_id__icontains | string |
| items__external_id__in | Array of strings Multiple values may be separated by commas. |
| items__external_id__startswith | string |
| items__seller_product | integer |
| items__seller_product__commodity | string or null Enum: "cattle" "cocoa" "coffee" "palm_oil" "rubber" "soya" "wood"
|
| items__seller_product__commodity__in | Array of strings Multiple values may be separated by commas. |
| items__seller_product__composition | string Enum: "composite" "simple"
|
| items__seller_product__composition__in | Array of strings Multiple values may be separated by commas. |
| items__seller_product__in | Array of integers Multiple values may be separated by commas. |
| items__seller_product__isnull | boolean |
| items__seller_product__name | string |
| items__seller_product__name__endswith | string |
| items__seller_product__name__icontains | string |
| items__seller_product__name__startswith | string |
| items__seller_product__sku | string |
| items__seller_product__sku__endswith | string |
| items__seller_product__sku__icontains | string |
| items__seller_product__sku__startswith | string |
| items__unit | string |
| items__volume | number <float> |
| items__volume__gte | number <float> |
| items__volume__lte | number <float> |
| limit | integer Number of results to return per page. |
| offset | integer The initial index from which to return the results. |
| order_action required | string Enum: "buying" "selling"
|
| order_arrival_at | string <date> |
| order_arrival_at__gte | string <date> |
| order_arrival_at__lte | string <date> |
| order_created_at | string <date> |
| order_created_at__gte | string <date> |
| order_created_at__lte | string <date> |
| ordering | string Which field to use when ordering the results. |
| passing_percentage_gte | number <double> Filter by minimum passing percentage (0-100) |
| search | string A search term. |
| seller_company_status | string Enum: "closed" "completed" "draft" "failing" "passing" "pending" "untraced"
|
| seller_company_status__in | Array of strings Multiple values may be separated by commas. |
| tags__name | string |
| tags__name__icontains | string |
| tags__name__in | Array of strings Multiple values may be separated by commas. |
| tags__slug | string |
| tags__slug__in | Array of strings Multiple values may be separated by commas. |
| type | string Enum: "manufactured_batch" "order" "produced_batch" "product_chain"
|
| type__in | Array of strings Multiple values may be separated by commas. |
| value_chain | integer |
{- "count": 123,
- "results": [
- {
- "id": 0,
- "company_id": 2147483647,
- "type": "order",
- "external_id": "string",
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "order_created_at": "2019-08-24",
- "order_arrival_at": "2019-08-24",
- "buyer_company_status": "draft",
- "seller_company_status": "draft",
- "assessment_status": "pending",
- "value_chain": 0,
- "value_chain_detail": {
- "id": 0,
- "company_name": "string",
- "type": "supplier",
- "description": "string",
- "status": "revoked",
- "country_code": "st",
- "country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "external_id": "string",
- "permission_granted": true,
- "is_self_managed": true,
- "contact_name": "string",
- "reciprocal_company_id": 0,
- "pulse_params": "string",
- "ownership_information": {
- "ownership_periods": [
- {
- "valid_from_month": "string",
- "valid_to_month": "string",
- "consolidation_approach": "equity_share",
- "ownership_percentage": "100"
}
], - "sector_code": "string",
- "notes": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null,
- "tags": [
- "string"
]
}, - "buyer_company_id": 2147483647,
- "seller_company_id": 2147483647,
- "company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "buyer_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "seller_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "items": [
- {
- "id": 0,
- "order": 0,
- "buyer_product": 0,
- "buyer_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "seller_product": 0,
- "seller_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "volume": 0.1,
- "unit": "str",
- "line_number": 2147483647,
- "external_id": "string",
- "is_complete_match": true,
- "seller_traced_suggestions": {
- "property1": null,
- "property2": null
}, - "traced_order_count": "string",
- "traced_origin_count": "string",
- "pulse_params": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null
}
], - "signed_off_at": "2019-08-24T14:15:22Z",
- "due_diligence_statements": [
- {
- "id": 0,
- "company_id": 0,
- "type": "EUDR",
- "status": "draft",
- "dds_data": null,
- "pulse_params": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
], - "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "border_cross_country_code": "st",
- "border_cross_country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "tags": [
- "string"
], - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
]
}Supply chain orders (purchase and sale) with their line items and value chain associations.
| company_id required | integer [ 0 .. 2147483647 ] |
| type required | string (Type6f8Enum) Enum: "order" "produced_batch" "manufactured_batch" "product_chain"
|
| external_id required | string [ 1 .. 255 ] characters |
| buyer_external_id | string or null [ 1 .. 255 ] characters |
| seller_external_id | string or null [ 1 .. 255 ] characters |
| order_created_at required | string <date> |
| order_arrival_at | string or null <date> |
| buyer_company_status | string (BuyerCompanyStatusEnum) Enum: "draft" "waiting_for_supplier" "ready_for_review" "statement_ready" "completed" "closed"
|
| seller_company_status | string (SellerCompanyStatusEnum) Enum: "draft" "untraced" "pending" "passing" "failing" "completed" "closed"
|
| value_chain | integer or null |
| buyer_company_id | integer or null [ 0 .. 2147483647 ] |
| seller_company_id | integer or null [ 0 .. 2147483647 ] |
| signed_off_at | string or null <date-time> |
| border_cross_country_code | string or null <= 2 characters Country code of the border crossing country |
| tags required | Array of strings[ items non-empty ] |
{- "company_id": 2147483647,
- "type": "order",
- "external_id": "string",
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "order_created_at": "2019-08-24",
- "order_arrival_at": "2019-08-24",
- "buyer_company_status": "draft",
- "seller_company_status": "draft",
- "value_chain": 0,
- "buyer_company_id": 2147483647,
- "seller_company_id": 2147483647,
- "signed_off_at": "2019-08-24T14:15:22Z",
- "border_cross_country_code": "st",
- "tags": [
- "string"
]
}{- "id": 0,
- "company_id": 2147483647,
- "type": "order",
- "external_id": "string",
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "order_created_at": "2019-08-24",
- "order_arrival_at": "2019-08-24",
- "buyer_company_status": "draft",
- "seller_company_status": "draft",
- "assessment_status": "pending",
- "value_chain": 0,
- "value_chain_detail": {
- "id": 0,
- "company_name": "string",
- "type": "supplier",
- "description": "string",
- "status": "revoked",
- "country_code": "st",
- "country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "external_id": "string",
- "permission_granted": true,
- "is_self_managed": true,
- "contact_name": "string",
- "reciprocal_company_id": 0,
- "pulse_params": "string",
- "ownership_information": {
- "ownership_periods": [
- {
- "valid_from_month": "string",
- "valid_to_month": "string",
- "consolidation_approach": "equity_share",
- "ownership_percentage": "100"
}
], - "sector_code": "string",
- "notes": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null,
- "tags": [
- "string"
]
}, - "buyer_company_id": 2147483647,
- "seller_company_id": 2147483647,
- "company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "buyer_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "seller_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "items": [
- {
- "id": 0,
- "order": 0,
- "buyer_product": 0,
- "buyer_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "seller_product": 0,
- "seller_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "volume": 0.1,
- "unit": "str",
- "line_number": 2147483647,
- "external_id": "string",
- "is_complete_match": true,
- "seller_traced_suggestions": {
- "property1": null,
- "property2": null
}, - "traced_order_count": "string",
- "traced_origin_count": "string",
- "pulse_params": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null
}
], - "signed_off_at": "2019-08-24T14:15:22Z",
- "due_diligence_statements": [
- {
- "id": 0,
- "company_id": 0,
- "type": "EUDR",
- "status": "draft",
- "dds_data": null,
- "pulse_params": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
], - "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "border_cross_country_code": "st",
- "border_cross_country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "tags": [
- "string"
], - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}Returns a single order by ID with full details including order items, value chain, and traceability counts.
| id required | integer A unique integer value identifying this Order. |
{- "id": 0,
- "company_id": 2147483647,
- "type": "order",
- "external_id": "string",
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "order_created_at": "2019-08-24",
- "order_arrival_at": "2019-08-24",
- "buyer_company_status": "draft",
- "seller_company_status": "draft",
- "assessment_status": "pending",
- "value_chain": 0,
- "value_chain_detail": {
- "id": 0,
- "company_name": "string",
- "type": "supplier",
- "description": "string",
- "status": "revoked",
- "country_code": "st",
- "country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "external_id": "string",
- "permission_granted": true,
- "is_self_managed": true,
- "contact_name": "string",
- "reciprocal_company_id": 0,
- "pulse_params": "string",
- "ownership_information": {
- "ownership_periods": [
- {
- "valid_from_month": "string",
- "valid_to_month": "string",
- "consolidation_approach": "equity_share",
- "ownership_percentage": "100"
}
], - "sector_code": "string",
- "notes": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null,
- "tags": [
- "string"
]
}, - "buyer_company_id": 2147483647,
- "seller_company_id": 2147483647,
- "company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "buyer_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "seller_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "items": [
- {
- "id": 0,
- "order": 0,
- "buyer_product": 0,
- "buyer_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "seller_product": 0,
- "seller_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "volume": 0.1,
- "unit": "str",
- "line_number": 2147483647,
- "external_id": "string",
- "is_complete_match": true,
- "seller_traced_suggestions": {
- "property1": null,
- "property2": null
}, - "traced_order_count": "string",
- "traced_origin_count": "string",
- "pulse_params": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null
}
], - "signed_off_at": "2019-08-24T14:15:22Z",
- "due_diligence_statements": [
- {
- "id": 0,
- "company_id": 0,
- "type": "EUDR",
- "status": "draft",
- "dds_data": null,
- "pulse_params": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
], - "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "border_cross_country_code": "st",
- "border_cross_country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "tags": [
- "string"
], - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}Create multiple orders in a single request. Each order can include nested order items with buyer/seller product references. Used for bulk data imports and integrations.
| type required | string (Type6f8Enum) Enum: "order" "produced_batch" "manufactured_batch" "product_chain"
|
| external_id required | string [ 1 .. 255 ] characters |
| buyer_external_id | string or null [ 1 .. 255 ] characters |
| seller_external_id | string or null [ 1 .. 255 ] characters |
| order_created_at required | string <date> |
| order_arrival_at | string or null <date> |
| buyer_company_status | string (BuyerCompanyStatusEnum) Enum: "draft" "waiting_for_supplier" "ready_for_review" "statement_ready" "completed" "closed"
|
| seller_company_id | integer or null [ 0 .. 2147483647 ] |
Array of objects (NestedOrderItemRequest) | |
| signed_off_at | string or null <date-time> |
| border_cross_country_code | string or null <= 2 characters Country code of the border crossing country |
| excluded_propagation_identifiers | any |
{- "type": "order",
- "external_id": "string",
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "order_created_at": "2019-08-24",
- "order_arrival_at": "2019-08-24",
- "buyer_company_status": "draft",
- "seller_company_id": 2147483647,
- "items": [
- {
- "id": 0,
- "buyer_product": 0,
- "seller_product": 0,
- "volume": 0.1,
- "unit": "str",
- "line_number": 2147483647,
- "external_id": "string",
- "trace": {
- "traced_orders": [
- 0
], - "traced_origins": [
- 0
]
}, - "excluded_propagation_identifiers": null
}
], - "signed_off_at": "2019-08-24T14:15:22Z",
- "border_cross_country_code": "st",
- "excluded_propagation_identifiers": null
}{- "id": 0,
- "type": "order",
- "external_id": "string",
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "order_created_at": "2019-08-24",
- "order_arrival_at": "2019-08-24",
- "buyer_company_status": "draft",
- "seller_company_status": "draft",
- "assessment_status": "pending",
- "value_chain": 0,
- "seller_company_id": 2147483647,
- "company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "buyer_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "seller_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "items": [
- {
- "id": 0,
- "order": 0,
- "buyer_product": 0,
- "buyer_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "seller_product": 0,
- "seller_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "volume": 0.1,
- "unit": "str",
- "line_number": 2147483647,
- "external_id": "string",
- "is_complete_match": true,
- "seller_traced_suggestions": {
- "property1": null,
- "property2": null
}, - "traced_order_count": "string",
- "traced_origin_count": "string",
- "pulse_params": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null
}
], - "signed_off_at": "2019-08-24T14:15:22Z",
- "due_diligence_statements": [
- 0
], - "assessment_summary": null,
- "border_cross_country_code": "st",
- "excluded_propagation_identifiers": null,
- "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "tags": [
- "string"
], - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}Update an existing batch order and its line items.
| id required | integer A unique integer value identifying this Order. |
| type | string (Type6f8Enum) Enum: "order" "produced_batch" "manufactured_batch" "product_chain"
|
| external_id | string [ 1 .. 255 ] characters |
| buyer_external_id | string or null [ 1 .. 255 ] characters |
| seller_external_id | string or null [ 1 .. 255 ] characters |
| order_created_at | string <date> |
| order_arrival_at | string or null <date> |
| buyer_company_status | string (BuyerCompanyStatusEnum) Enum: "draft" "waiting_for_supplier" "ready_for_review" "statement_ready" "completed" "closed"
|
| seller_company_id | integer or null [ 0 .. 2147483647 ] |
Array of objects (NestedOrderItemRequest) | |
| signed_off_at | string or null <date-time> |
| border_cross_country_code | string or null <= 2 characters Country code of the border crossing country |
| excluded_propagation_identifiers | any |
{- "type": "order",
- "external_id": "string",
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "order_created_at": "2019-08-24",
- "order_arrival_at": "2019-08-24",
- "buyer_company_status": "draft",
- "seller_company_id": 2147483647,
- "items": [
- {
- "id": 0,
- "buyer_product": 0,
- "seller_product": 0,
- "volume": 0.1,
- "unit": "str",
- "line_number": 2147483647,
- "external_id": "string",
- "trace": {
- "traced_orders": [
- 0
], - "traced_origins": [
- 0
]
}, - "excluded_propagation_identifiers": null
}
], - "signed_off_at": "2019-08-24T14:15:22Z",
- "border_cross_country_code": "st",
- "excluded_propagation_identifiers": null
}{- "id": 0,
- "type": "order",
- "external_id": "string",
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "order_created_at": "2019-08-24",
- "order_arrival_at": "2019-08-24",
- "buyer_company_status": "draft",
- "seller_company_status": "draft",
- "assessment_status": "pending",
- "value_chain": 0,
- "seller_company_id": 2147483647,
- "company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "buyer_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "seller_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "items": [
- {
- "id": 0,
- "order": 0,
- "buyer_product": 0,
- "buyer_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "seller_product": 0,
- "seller_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "volume": 0.1,
- "unit": "str",
- "line_number": 2147483647,
- "external_id": "string",
- "is_complete_match": true,
- "seller_traced_suggestions": {
- "property1": null,
- "property2": null
}, - "traced_order_count": "string",
- "traced_origin_count": "string",
- "pulse_params": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null
}
], - "signed_off_at": "2019-08-24T14:15:22Z",
- "due_diligence_statements": [
- 0
], - "assessment_summary": null,
- "border_cross_country_code": "st",
- "excluded_propagation_identifiers": null,
- "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "tags": [
- "string"
], - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}Create a new purchase order with nested order items. The authenticated company is set as the buyer.
| type required | string (Type6f8Enum) Enum: "order" "produced_batch" "manufactured_batch" "product_chain"
|
| external_id required | string [ 1 .. 255 ] characters |
| buyer_external_id | string or null [ 1 .. 255 ] characters |
| seller_external_id | string or null [ 1 .. 255 ] characters |
| order_created_at required | string <date> |
| order_arrival_at | string or null <date> |
| buyer_company_status | string (BuyerCompanyStatusEnum) Enum: "draft" "waiting_for_supplier" "ready_for_review" "statement_ready" "completed" "closed"
|
| value_chain | integer or null |
| seller_company_id | integer or null [ 0 .. 2147483647 ] |
Array of objects (NestedOrderItemRequest) | |
| send_information_request | boolean Default: false |
| signed_off_at | string or null <date-time> |
| border_cross_country_code | string or null <= 2 characters Country code of the border crossing country |
| excluded_propagation_identifiers | any |
| dds_identifiers | Array of strings[ items non-empty ] |
{- "type": "order",
- "external_id": "string",
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "order_created_at": "2019-08-24",
- "order_arrival_at": "2019-08-24",
- "buyer_company_status": "draft",
- "value_chain": 0,
- "seller_company_id": 2147483647,
- "items": [
- {
- "id": 0,
- "buyer_product": 0,
- "seller_product": 0,
- "volume": 0.1,
- "unit": "str",
- "line_number": 2147483647,
- "external_id": "string",
- "trace": {
- "traced_orders": [
- 0
], - "traced_origins": [
- 0
]
}, - "excluded_propagation_identifiers": null
}
], - "send_information_request": false,
- "signed_off_at": "2019-08-24T14:15:22Z",
- "border_cross_country_code": "st",
- "excluded_propagation_identifiers": null,
- "dds_identifiers": [
- "string"
]
}{- "id": 0,
- "type": "order",
- "external_id": "string",
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "order_created_at": "2019-08-24",
- "order_arrival_at": "2019-08-24",
- "buyer_company_status": "draft",
- "seller_company_status": "draft",
- "assessment_status": "pending",
- "value_chain": 0,
- "value_chain_detail": {
- "id": 0,
- "company_name": "string",
- "type": "supplier",
- "description": "string",
- "status": "revoked",
- "country_code": "st",
- "country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "external_id": "string",
- "permission_granted": true,
- "is_self_managed": true,
- "contact_name": "string",
- "reciprocal_company_id": 0,
- "pulse_params": "string",
- "ownership_information": {
- "ownership_periods": [
- {
- "valid_from_month": "string",
- "valid_to_month": "string",
- "consolidation_approach": "equity_share",
- "ownership_percentage": "100"
}
], - "sector_code": "string",
- "notes": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null,
- "tags": [
- "string"
]
}, - "seller_company_id": 2147483647,
- "company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "buyer_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "seller_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "items": [
- {
- "id": 0,
- "order": 0,
- "buyer_product": 0,
- "buyer_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "seller_product": 0,
- "seller_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "volume": 0.1,
- "unit": "str",
- "line_number": 2147483647,
- "external_id": "string",
- "is_complete_match": true,
- "seller_traced_suggestions": {
- "property1": null,
- "property2": null
}, - "traced_order_count": "string",
- "traced_origin_count": "string",
- "pulse_params": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null
}
], - "signed_off_at": "2019-08-24T14:15:22Z",
- "due_diligence_statements": [
- 0
], - "border_cross_country_code": "st",
- "border_cross_country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "excluded_propagation_identifiers": null,
- "assessment_summary": null,
- "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "tags": [
- "string"
], - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}Partially update an existing purchase order and its items.
| id required | integer A unique integer value identifying this Order. |
| type | string (Type6f8Enum) Enum: "order" "produced_batch" "manufactured_batch" "product_chain"
|
| external_id | string [ 1 .. 255 ] characters |
| buyer_external_id | string or null [ 1 .. 255 ] characters |
| seller_external_id | string or null [ 1 .. 255 ] characters |
| order_created_at | string <date> |
| order_arrival_at | string or null <date> |
| buyer_company_status | string (BuyerCompanyStatusEnum) Enum: "draft" "waiting_for_supplier" "ready_for_review" "statement_ready" "completed" "closed"
|
| value_chain | integer or null |
| seller_company_id | integer or null [ 0 .. 2147483647 ] |
Array of objects (NestedOrderItemRequest) | |
| send_information_request | boolean Default: false |
| signed_off_at | string or null <date-time> |
| border_cross_country_code | string or null <= 2 characters Country code of the border crossing country |
| excluded_propagation_identifiers | any |
| dds_identifiers | Array of strings[ items non-empty ] |
{- "type": "order",
- "external_id": "string",
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "order_created_at": "2019-08-24",
- "order_arrival_at": "2019-08-24",
- "buyer_company_status": "draft",
- "value_chain": 0,
- "seller_company_id": 2147483647,
- "items": [
- {
- "id": 0,
- "buyer_product": 0,
- "seller_product": 0,
- "volume": 0.1,
- "unit": "str",
- "line_number": 2147483647,
- "external_id": "string",
- "trace": {
- "traced_orders": [
- 0
], - "traced_origins": [
- 0
]
}, - "excluded_propagation_identifiers": null
}
], - "send_information_request": false,
- "signed_off_at": "2019-08-24T14:15:22Z",
- "border_cross_country_code": "st",
- "excluded_propagation_identifiers": null,
- "dds_identifiers": [
- "string"
]
}{- "id": 0,
- "type": "order",
- "external_id": "string",
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "order_created_at": "2019-08-24",
- "order_arrival_at": "2019-08-24",
- "buyer_company_status": "draft",
- "seller_company_status": "draft",
- "assessment_status": "pending",
- "value_chain": 0,
- "value_chain_detail": {
- "id": 0,
- "company_name": "string",
- "type": "supplier",
- "description": "string",
- "status": "revoked",
- "country_code": "st",
- "country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "external_id": "string",
- "permission_granted": true,
- "is_self_managed": true,
- "contact_name": "string",
- "reciprocal_company_id": 0,
- "pulse_params": "string",
- "ownership_information": {
- "ownership_periods": [
- {
- "valid_from_month": "string",
- "valid_to_month": "string",
- "consolidation_approach": "equity_share",
- "ownership_percentage": "100"
}
], - "sector_code": "string",
- "notes": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null,
- "tags": [
- "string"
]
}, - "seller_company_id": 2147483647,
- "company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "buyer_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "seller_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "items": [
- {
- "id": 0,
- "order": 0,
- "buyer_product": 0,
- "buyer_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "seller_product": 0,
- "seller_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "volume": 0.1,
- "unit": "str",
- "line_number": 2147483647,
- "external_id": "string",
- "is_complete_match": true,
- "seller_traced_suggestions": {
- "property1": null,
- "property2": null
}, - "traced_order_count": "string",
- "traced_origin_count": "string",
- "pulse_params": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null
}
], - "signed_off_at": "2019-08-24T14:15:22Z",
- "due_diligence_statements": [
- 0
], - "border_cross_country_code": "st",
- "border_cross_country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "excluded_propagation_identifiers": null,
- "assessment_summary": null,
- "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "tags": [
- "string"
], - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}Create a new sale order with nested order items. The authenticated company is set as the seller.
| type required | string (Type6f8Enum) Enum: "order" "produced_batch" "manufactured_batch" "product_chain"
|
| external_id required | string [ 1 .. 255 ] characters |
| buyer_external_id | string or null [ 1 .. 255 ] characters |
| seller_external_id | string or null [ 1 .. 255 ] characters |
| order_created_at required | string <date> |
| order_arrival_at | string or null <date> |
| seller_company_status | string (SellerCompanyStatusEnum) Enum: "draft" "untraced" "pending" "passing" "failing" "completed" "closed"
|
| assessment_status | string (AssessmentStatusEnum) Enum: "pending" "in_progress" "passing" "failing" "mitigated"
|
| value_chain | integer or null |
| buyer_company_id | integer or null [ 0 .. 2147483647 ] |
Array of objects (NestedOrderItemRequest) | |
| send_information_request | boolean Default: false |
| signed_off_at | string or null <date-time> |
| dds_identifiers | Array of strings[ items non-empty ] |
| border_cross_country_code | string or null <= 2 characters Country code of the border crossing country |
| excluded_propagation_identifiers | any |
{- "type": "order",
- "external_id": "string",
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "order_created_at": "2019-08-24",
- "order_arrival_at": "2019-08-24",
- "seller_company_status": "draft",
- "assessment_status": "pending",
- "value_chain": 0,
- "buyer_company_id": 2147483647,
- "items": [
- {
- "id": 0,
- "buyer_product": 0,
- "seller_product": 0,
- "volume": 0.1,
- "unit": "str",
- "line_number": 2147483647,
- "external_id": "string",
- "trace": {
- "traced_orders": [
- 0
], - "traced_origins": [
- 0
]
}, - "excluded_propagation_identifiers": null
}
], - "send_information_request": false,
- "signed_off_at": "2019-08-24T14:15:22Z",
- "dds_identifiers": [
- "string"
], - "border_cross_country_code": "st",
- "excluded_propagation_identifiers": null
}{- "id": 0,
- "type": "order",
- "external_id": "string",
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "order_created_at": "2019-08-24",
- "order_arrival_at": "2019-08-24",
- "buyer_company_status": "draft",
- "seller_company_status": "draft",
- "assessment_status": "pending",
- "value_chain": 0,
- "value_chain_detail": {
- "id": 0,
- "company_name": "string",
- "type": "supplier",
- "description": "string",
- "status": "revoked",
- "country_code": "st",
- "country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "external_id": "string",
- "permission_granted": true,
- "is_self_managed": true,
- "contact_name": "string",
- "reciprocal_company_id": 0,
- "pulse_params": "string",
- "ownership_information": {
- "ownership_periods": [
- {
- "valid_from_month": "string",
- "valid_to_month": "string",
- "consolidation_approach": "equity_share",
- "ownership_percentage": "100"
}
], - "sector_code": "string",
- "notes": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null,
- "tags": [
- "string"
]
}, - "buyer_company_id": 2147483647,
- "company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "buyer_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "seller_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "items": [
- {
- "id": 0,
- "order": 0,
- "buyer_product": 0,
- "buyer_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "seller_product": 0,
- "seller_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "volume": 0.1,
- "unit": "str",
- "line_number": 2147483647,
- "external_id": "string",
- "is_complete_match": true,
- "seller_traced_suggestions": {
- "property1": null,
- "property2": null
}, - "traced_order_count": "string",
- "traced_origin_count": "string",
- "pulse_params": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null
}
], - "signed_off_at": "2019-08-24T14:15:22Z",
- "due_diligence_statements": [
- 0
], - "border_cross_country_code": "st",
- "border_cross_country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "excluded_propagation_identifiers": null,
- "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "tags": [
- "string"
], - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}Partially update an existing sale order and its items.
| id required | integer A unique integer value identifying this Order. |
| type | string (Type6f8Enum) Enum: "order" "produced_batch" "manufactured_batch" "product_chain"
|
| external_id | string [ 1 .. 255 ] characters |
| buyer_external_id | string or null [ 1 .. 255 ] characters |
| seller_external_id | string or null [ 1 .. 255 ] characters |
| order_created_at | string <date> |
| order_arrival_at | string or null <date> |
| seller_company_status | string (SellerCompanyStatusEnum) Enum: "draft" "untraced" "pending" "passing" "failing" "completed" "closed"
|
| assessment_status | string (AssessmentStatusEnum) Enum: "pending" "in_progress" "passing" "failing" "mitigated"
|
| value_chain | integer or null |
| buyer_company_id | integer or null [ 0 .. 2147483647 ] |
Array of objects (NestedOrderItemRequest) | |
| send_information_request | boolean Default: false |
| signed_off_at | string or null <date-time> |
| dds_identifiers | Array of strings[ items non-empty ] |
| border_cross_country_code | string or null <= 2 characters Country code of the border crossing country |
| excluded_propagation_identifiers | any |
{- "type": "order",
- "external_id": "string",
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "order_created_at": "2019-08-24",
- "order_arrival_at": "2019-08-24",
- "seller_company_status": "draft",
- "assessment_status": "pending",
- "value_chain": 0,
- "buyer_company_id": 2147483647,
- "items": [
- {
- "id": 0,
- "buyer_product": 0,
- "seller_product": 0,
- "volume": 0.1,
- "unit": "str",
- "line_number": 2147483647,
- "external_id": "string",
- "trace": {
- "traced_orders": [
- 0
], - "traced_origins": [
- 0
]
}, - "excluded_propagation_identifiers": null
}
], - "send_information_request": false,
- "signed_off_at": "2019-08-24T14:15:22Z",
- "dds_identifiers": [
- "string"
], - "border_cross_country_code": "st",
- "excluded_propagation_identifiers": null
}{- "id": 0,
- "type": "order",
- "external_id": "string",
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "order_created_at": "2019-08-24",
- "order_arrival_at": "2019-08-24",
- "buyer_company_status": "draft",
- "seller_company_status": "draft",
- "assessment_status": "pending",
- "value_chain": 0,
- "value_chain_detail": {
- "id": 0,
- "company_name": "string",
- "type": "supplier",
- "description": "string",
- "status": "revoked",
- "country_code": "st",
- "country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "external_id": "string",
- "permission_granted": true,
- "is_self_managed": true,
- "contact_name": "string",
- "reciprocal_company_id": 0,
- "pulse_params": "string",
- "ownership_information": {
- "ownership_periods": [
- {
- "valid_from_month": "string",
- "valid_to_month": "string",
- "consolidation_approach": "equity_share",
- "ownership_percentage": "100"
}
], - "sector_code": "string",
- "notes": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null,
- "tags": [
- "string"
]
}, - "buyer_company_id": 2147483647,
- "company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "buyer_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "seller_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "items": [
- {
- "id": 0,
- "order": 0,
- "buyer_product": 0,
- "buyer_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "seller_product": 0,
- "seller_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "volume": 0.1,
- "unit": "str",
- "line_number": 2147483647,
- "external_id": "string",
- "is_complete_match": true,
- "seller_traced_suggestions": {
- "property1": null,
- "property2": null
}, - "traced_order_count": "string",
- "traced_origin_count": "string",
- "pulse_params": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null
}
], - "signed_off_at": "2019-08-24T14:15:22Z",
- "due_diligence_statements": [
- 0
], - "border_cross_country_code": "st",
- "border_cross_country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "excluded_propagation_identifiers": null,
- "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "tags": [
- "string"
], - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}Returns aggregated order statistics such as order counts grouped by date. Required filter: order_action (buying|selling). Use filters to narrow by type, buyer_company_status, seller_company_status, assessment_status, value_chain, date ranges (order_created_at, order_arrival_at), border_cross_country_code, tags, or item details. Results are not paginated.
| assessment_status | string Enum: "failing" "in_progress" "mitigated" "passing" "pending"
|
| assessment_status__in | Array of strings Multiple values may be separated by commas. |
| border_cross_country_code | string |
| border_cross_country_code__in | Array of strings Multiple values may be separated by commas. |
| buyer_company_status | string Enum: "closed" "completed" "draft" "ready_for_review" "statement_ready" "waiting_for_supplier"
|
| buyer_company_status__in | Array of strings Multiple values may be separated by commas. |
| delimit_by | string Enum: "daily" "monthly" "yearly"
|
| failing_percentage_gte | number <double> Filter by minimum failing percentage (0-100) |
| group_by | Array of strings Items Enum: "assessment_status" "buyer_company_status" "seller_company_status" "type"
|
| id | integer |
| id__in | Array of integers Multiple values may be separated by commas. |
| items__buyer_product | integer |
| items__buyer_product__commodity | string or null Enum: "cattle" "cocoa" "coffee" "palm_oil" "rubber" "soya" "wood"
|
| items__buyer_product__commodity__in | Array of strings Multiple values may be separated by commas. |
| items__buyer_product__composition | string Enum: "composite" "simple"
|
| items__buyer_product__composition__in | Array of strings Multiple values may be separated by commas. |
| items__buyer_product__in | Array of integers Multiple values may be separated by commas. |
| items__buyer_product__isnull | boolean |
| items__buyer_product__name | string |
| items__buyer_product__name__endswith | string |
| items__buyer_product__name__icontains | string |
| items__buyer_product__name__startswith | string |
| items__buyer_product__sku | string |
| items__buyer_product__sku__endswith | string |
| items__buyer_product__sku__icontains | string |
| items__buyer_product__sku__startswith | string |
| items__external_id | string |
| items__external_id__endswith | string |
| items__external_id__icontains | string |
| items__external_id__in | Array of strings Multiple values may be separated by commas. |
| items__external_id__startswith | string |
| items__seller_product | integer |
| items__seller_product__commodity | string or null Enum: "cattle" "cocoa" "coffee" "palm_oil" "rubber" "soya" "wood"
|
| items__seller_product__commodity__in | Array of strings Multiple values may be separated by commas. |
| items__seller_product__composition | string Enum: "composite" "simple"
|
| items__seller_product__composition__in | Array of strings Multiple values may be separated by commas. |
| items__seller_product__in | Array of integers Multiple values may be separated by commas. |
| items__seller_product__isnull | boolean |
| items__seller_product__name | string |
| items__seller_product__name__endswith | string |
| items__seller_product__name__icontains | string |
| items__seller_product__name__startswith | string |
| items__seller_product__sku | string |
| items__seller_product__sku__endswith | string |
| items__seller_product__sku__icontains | string |
| items__seller_product__sku__startswith | string |
| items__unit | string |
| items__volume | number <float> |
| items__volume__gte | number <float> |
| items__volume__lte | number <float> |
| order_action required | string Enum: "buying" "selling"
|
| order_arrival_at | string <date> |
| order_arrival_at__gte | string <date> |
| order_arrival_at__lte | string <date> |
| order_created_at | string <date> |
| order_created_at__gte | string <date> |
| order_created_at__lte | string <date> |
| passing_percentage_gte | number <double> Filter by minimum passing percentage (0-100) |
| seller_company_status | string Enum: "closed" "completed" "draft" "failing" "passing" "pending" "untraced"
|
| seller_company_status__in | Array of strings Multiple values may be separated by commas. |
| tags__name | string |
| tags__name__icontains | string |
| tags__name__in | Array of strings Multiple values may be separated by commas. |
| tags__slug | string |
| tags__slug__in | Array of strings Multiple values may be separated by commas. |
| type | string Enum: "manufactured_batch" "order" "produced_batch" "product_chain"
|
| type__in | Array of strings Multiple values may be separated by commas. |
| value_chain | integer |
[- {
- "order_count": 0,
- "date": "2019-08-24",
- "type": "string",
- "buyer_company_status": "string",
- "seller_company_status": "string",
- "assessment_status": "string"
}
]Returns a paginated list of geographic origins for the authenticated company. Each origin includes its name, country code, coordinates, and description. Use search to filter by name or description, or order by name/country_code.
| assessment_status | string Enum: "failing" "in_progress" "mitigated" "passing" "pending"
|
| assessment_status__in | Array of strings Multiple values may be separated by commas. |
| country_code | string |
| description | string |
| description__endswith | string |
| description__icontains | string |
| description__startswith | string |
| external_id | string |
| external_id__endswith | string |
| external_id__icontains | string |
| external_id__in | Array of strings Multiple values may be separated by commas. |
| external_id__startswith | string |
| failing_percentage_gte | number <double> Filter by minimum failing percentage (0-100) |
| id__in | Array of integers Multiple values may be separated by commas. |
| limit | integer Number of results to return per page. |
| name | string |
| name__endswith | string |
| name__icontains | string |
| name__startswith | string |
| offset | integer The initial index from which to return the results. |
| ordering | string Which field to use when ordering the results. |
| passing_percentage_gte | number <double> Filter by minimum passing percentage (0-100) |
| search | string A search term. |
{- "count": 123,
- "results": [
- {
- "id": 0,
- "name": "string",
- "description": "string",
- "country_code": "st",
- "country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "location": null,
- "external_id": "string",
- "open_atlas_external_id": "string",
- "open_atlas_information": null,
- "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null
}
]
}Create a new geographic origin with a name, country code, and optional coordinates and description.
| name required | string [ 1 .. 255 ] characters |
| description | string or null |
| country_code required | string [ 1 .. 2 ] characters |
| location | any |
| external_id | string or null <= 255 characters |
| excluded_propagation_identifiers | any |
{- "name": "string",
- "description": "string",
- "country_code": "st",
- "location": null,
- "external_id": "string",
- "excluded_propagation_identifiers": null
}{- "id": 0,
- "name": "string",
- "description": "string",
- "country_code": "st",
- "country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "location": null,
- "external_id": "string",
- "open_atlas_external_id": "string",
- "open_atlas_information": null,
- "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null
}Returns a single origin by ID with full details.
| id required | integer A unique integer value identifying this Origin. |
{- "id": 0,
- "name": "string",
- "description": "string",
- "country_code": "st",
- "country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "location": null,
- "external_id": "string",
- "open_atlas_external_id": "string",
- "open_atlas_information": null,
- "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null
}Partially update an existing origin. Only provided fields are changed.
| id required | integer A unique integer value identifying this Origin. |
| name | string [ 1 .. 255 ] characters |
| description | string or null |
| country_code | string [ 1 .. 2 ] characters |
| location | any |
| external_id | string or null <= 255 characters |
| excluded_propagation_identifiers | any |
{- "name": "string",
- "description": "string",
- "country_code": "st",
- "location": null,
- "external_id": "string",
- "excluded_propagation_identifiers": null
}{- "id": 0,
- "name": "string",
- "description": "string",
- "country_code": "st",
- "country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "location": null,
- "external_id": "string",
- "open_atlas_external_id": "string",
- "open_atlas_information": null,
- "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null
}Returns a paginated list of products for the authenticated company. Each product includes its name, SKU, commodity type, composition, and HS code classification. Search by SKU or name, and order by name, commodity, type, or composition.
| assessment_identifier__in | Array of strings Products whose assessment_summary.assessment_runs references any of the given identifiers, e.g. scranton$Product$123 (CSV) |
| assessment_run_id__contains | Array of strings Products whose assessment_summary.assessment_runs contains all of the given assessment run ids (CSV, AND) |
| assessment_run_id__in | Array of strings Products whose assessment_summary.assessment_runs contains any of the given assessment run ids (CSV, OR) |
| assessment_status | string Enum: "failing" "in_progress" "mitigated" "passing" "pending"
|
| assessment_status__in | Array of strings Multiple values may be separated by commas. |
| assessment_status__isnull | boolean |
| commodity | string or null Enum: "cattle" "cocoa" "coffee" "palm_oil" "rubber" "soya" "wood"
|
| commodity__in | Array of strings Multiple values may be separated by commas. |
| common_name | string |
| common_name__endswith | string |
| common_name__icontains | string |
| common_name__isnull | boolean |
| common_name__startswith | string |
| composition | string Enum: "composite" "simple"
|
| composition__in | Array of strings Multiple values may be separated by commas. |
| description | string |
| description__endswith | string |
| description__icontains | string |
| description__isnull | boolean |
| description__startswith | string |
| external_id | string |
| external_id__endswith | string |
| external_id__icontains | string |
| external_id__in | Array of strings Multiple values may be separated by commas. |
| external_id__startswith | string |
| failing_percentage_gte | number <double> Filter by minimum failing percentage (0-100) |
| hs_code | string |
| hs_code__endswith | string |
| hs_code__icontains | string |
| hs_code__in | Array of strings Multiple values may be separated by commas. |
| hs_code__startswith | string |
| id | integer |
| id__exclude_in | Array of integers Exclude products with any of the given IDs (CSV) |
| id__in | Array of integers Multiple values may be separated by commas. |
| limit | integer Number of results to return per page. |
| name | string |
| name__endswith | string |
| name__icontains | string |
| name__iendswith | string |
| name__istartswith | string |
| name__startswith | string |
| offset | integer The initial index from which to return the results. |
| ordering | string Which field to use when ordering the results. |
| passing_percentage_gte | number <double> Filter by minimum passing percentage (0-100) |
| scientific_name | string |
| scientific_name__endswith | string |
| scientific_name__icontains | string |
| scientific_name__isnull | boolean |
| scientific_name__startswith | string |
| search | string A search term. |
| sku | string |
| sku__endswith | string |
| sku__icontains | string |
| sku__iendswith | string |
| sku__istartswith | string |
| sku__startswith | string |
| tags__name | string |
| tags__name__exclude_in | Array of strings Exclude products tagged with any of the given tag names (CSV, exact match) |
| tags__name__icontains | string |
| tags__name__in | Array of strings Multiple values may be separated by commas. |
| tags__slug | string |
| tags__slug__in | Array of strings Multiple values may be separated by commas. |
| type | string Enum: "manufactured" "produced" "purchased"
|
| type__in | Array of strings Multiple values may be separated by commas. |
{- "count": 123,
- "results": [
- {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}
]
}Create a new product with a name, SKU, commodity type, and optional HS code and composition details.
| sku required | string [ 1 .. 100 ] characters |
| name required | string [ 1 .. 255 ] characters |
| description | string or null |
| scientific_name | string or null <= 255 characters |
| common_name | string or null <= 255 characters |
| type required | string (TypeFdfEnum) Enum: "manufactured" "produced" "purchased"
|
| hs_code | string or null <= 255 characters |
(CommodityEnum (string or null)) or (BlankEnum (any or null)) or (NullEnum (any or null)) | |
| composition required | string (CompositionEnum) Enum: "simple" "composite"
|
| external_id | string or null <= 255 characters |
| product_components | Array of integers A list of product IDs to set as components. |
| tags | Array of strings[ items non-empty ] |
| excluded_propagation_identifiers | any |
{- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "product_components": [
- 0
], - "tags": [
- "string"
], - "excluded_propagation_identifiers": null
}{- "id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "product_components": [
- 0
], - "product_components_detail": [
- {
- "id": 0,
- "product": 0,
- "component_product": 0,
- "component_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "quantity": 2147483647,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "deleted_at": "2019-08-24T14:15:22Z"
}
], - "due_diligence_statements": [
- 0
], - "tags": [
- "string"
], - "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}Returns a single product by ID with full details.
| id required | integer A unique integer value identifying this Product. |
{- "id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "product_components": [
- 0
], - "product_components_detail": [
- {
- "id": 0,
- "product": 0,
- "component_product": 0,
- "component_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "quantity": 2147483647,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "deleted_at": "2019-08-24T14:15:22Z"
}
], - "due_diligence_statements": [
- 0
], - "tags": [
- "string"
], - "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}Partially update an existing product. Only provided fields are changed.
| id required | integer A unique integer value identifying this Product. |
| sku | string [ 1 .. 100 ] characters |
| name | string [ 1 .. 255 ] characters |
| description | string or null |
| scientific_name | string or null <= 255 characters |
| common_name | string or null <= 255 characters |
| type | string (TypeFdfEnum) Enum: "manufactured" "produced" "purchased"
|
| hs_code | string or null <= 255 characters |
(CommodityEnum (string or null)) or (BlankEnum (any or null)) or (NullEnum (any or null)) | |
| composition | string (CompositionEnum) Enum: "simple" "composite"
|
| external_id | string or null <= 255 characters |
| product_components | Array of integers A list of product IDs to set as components. |
| tags | Array of strings[ items non-empty ] |
| excluded_propagation_identifiers | any |
{- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "product_components": [
- 0
], - "tags": [
- "string"
], - "excluded_propagation_identifiers": null
}{- "id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "product_components": [
- 0
], - "product_components_detail": [
- {
- "id": 0,
- "product": 0,
- "component_product": 0,
- "component_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "quantity": 2147483647,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "deleted_at": "2019-08-24T14:15:22Z"
}
], - "due_diligence_statements": [
- 0
], - "tags": [
- "string"
], - "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}Returns order items where your company is the seller, showing their traceability status — which source orders and origins are linked. Use filters to narrow by product, volume, or assessment status.
| assessment_status | string Enum: "failing" "in_progress" "mitigated" "passing" "pending"
|
| assessment_status__in | Array of strings Multiple values may be separated by commas. |
| buyer_product | integer |
| buyer_product__commodity | string or null Enum: "cattle" "cocoa" "coffee" "palm_oil" "rubber" "soya" "wood"
|
| buyer_product__composition | string Enum: "composite" "simple"
|
| buyer_product__in | Array of integers Multiple values may be separated by commas. |
| buyer_product__isnull | boolean |
| buyer_product__name | string |
| buyer_product__name__endswith | string |
| buyer_product__name__icontains | string |
| buyer_product__name__startswith | string |
| buyer_product__sku | string |
| buyer_product__sku__endswith | string |
| buyer_product__sku__icontains | string |
| buyer_product__sku__startswith | string |
| failing_percentage_gte | number <double> Filter by minimum failing percentage (0-100) |
| id | integer |
| id__exclude_in | Array of integers Exclude order items with any of the given IDs (CSV) |
| id__in | Array of integers Multiple values may be separated by commas. |
| limit | integer Number of results to return per page. |
| offset | integer The initial index from which to return the results. |
| order | integer |
| order__buyer_company_status | string Enum: "closed" "completed" "draft" "ready_for_review" "statement_ready" "waiting_for_supplier"
|
| order__buyer_company_status__in | Array of strings Multiple values may be separated by commas. |
| order__in | Array of integers Multiple values may be separated by commas. |
| order__order_created_at | string <date> |
| order__order_created_at__gte | string <date> |
| order__order_created_at__lte | string <date> |
| order__seller_company_status | string Enum: "closed" "completed" "draft" "failing" "passing" "pending" "untraced"
|
| order__seller_company_status__in | Array of strings Multiple values may be separated by commas. |
| order__type | string Enum: "manufactured_batch" "order" "produced_batch" "product_chain"
|
| order__type__in | Array of strings Multiple values may be separated by commas. |
| ordering | string Which field to use when ordering the results. |
| passing_percentage_gte | number <double> Filter by minimum passing percentage (0-100) |
| search | string A search term. |
| seller_product | integer |
| seller_product__commodity | string or null Enum: "cattle" "cocoa" "coffee" "palm_oil" "rubber" "soya" "wood"
|
| seller_product__composition | string Enum: "composite" "simple"
|
| seller_product__in | Array of integers Multiple values may be separated by commas. |
| seller_product__isnull | boolean |
| seller_product__name | string |
| seller_product__name__endswith | string |
| seller_product__name__icontains | string |
| seller_product__name__startswith | string |
| seller_product__sku | string |
| seller_product__sku__endswith | string |
| seller_product__sku__icontains | string |
| seller_product__sku__startswith | string |
| trace_suggestions_exists | boolean Filter to items that have an acceptable exact-SKU trace suggestion (true), or those still needing manual mapping (false). |
| traced_orders_exists | boolean Filter by whether order item has any traced orders (true/false) |
| traced_origins_exists | boolean Filter by whether order item has any traced origins (true/false) |
| unit | string |
| volume | number <float> |
| volume__gte | number <float> |
| volume__lte | number <float> |
{- "count": 123,
- "results": [
- {
- "id": 0,
- "order": 0,
- "order_detail": {
- "id": 0,
- "type": "order",
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "order_created_at": "2019-08-24",
- "order_arrival_at": "2019-08-24",
- "buyer_company_status": "draft",
- "seller_company_status": "draft",
- "assessment_status": "pending",
- "value_chain": 0,
- "buyer_company_id": 2147483647,
- "seller_company_id": 2147483647,
- "company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "buyer_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "seller_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "signed_off_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "excluded_propagation_identifiers": null
}, - "buyer_product": 0,
- "buyer_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "seller_product": 0,
- "seller_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "volume": 0.1,
- "unit": "str",
- "line_number": 2147483647,
- "external_id": "string",
- "traced_orders_detail": [
- {
- "id": 0,
- "type": "order",
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "order_created_at": "2019-08-24",
- "order_arrival_at": "2019-08-24",
- "buyer_company_status": "draft",
- "seller_company_status": "draft",
- "assessment_status": "pending",
- "value_chain": 0,
- "buyer_company_id": 2147483647,
- "seller_company_id": 2147483647,
- "company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "buyer_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "seller_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "signed_off_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "excluded_propagation_identifiers": null
}
], - "traced_origins_detail": [
- {
- "id": 0,
- "name": "string",
- "description": "string",
- "country_code": "st",
- "country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "location": null,
- "external_id": "string",
- "open_atlas_external_id": "string",
- "open_atlas_information": null,
- "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null
}
], - "is_complete_match": true,
- "seller_traced_suggestions": {
- "property1": null,
- "property2": null
}, - "pulse_params": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending"
}
]
}Returns a single traceable order item by ID with its linked orders and origins.
| id required | integer A unique integer value identifying this Order Item. |
{- "id": 0,
- "order": 0,
- "order_detail": {
- "id": 0,
- "type": "order",
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "order_created_at": "2019-08-24",
- "order_arrival_at": "2019-08-24",
- "buyer_company_status": "draft",
- "seller_company_status": "draft",
- "assessment_status": "pending",
- "value_chain": 0,
- "buyer_company_id": 2147483647,
- "seller_company_id": 2147483647,
- "company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "buyer_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "seller_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "signed_off_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "excluded_propagation_identifiers": null
}, - "buyer_product": 0,
- "buyer_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "seller_product": 0,
- "seller_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "volume": 0.1,
- "unit": "str",
- "line_number": 2147483647,
- "external_id": "string",
- "traced_orders_detail": [
- {
- "id": 0,
- "type": "order",
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "order_created_at": "2019-08-24",
- "order_arrival_at": "2019-08-24",
- "buyer_company_status": "draft",
- "seller_company_status": "draft",
- "assessment_status": "pending",
- "value_chain": 0,
- "buyer_company_id": 2147483647,
- "seller_company_id": 2147483647,
- "company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "buyer_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "seller_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "signed_off_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "excluded_propagation_identifiers": null
}
], - "traced_origins_detail": [
- {
- "id": 0,
- "name": "string",
- "description": "string",
- "country_code": "st",
- "country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "location": null,
- "external_id": "string",
- "open_atlas_external_id": "string",
- "open_atlas_information": null,
- "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null
}
], - "is_complete_match": true,
- "seller_traced_suggestions": {
- "property1": null,
- "property2": null
}, - "pulse_params": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending"
}Partially updates the traceability links for a single order item. To update multiple items at once use the bulk-update endpoint.
| id required | integer A unique integer value identifying this Order Item. |
| order | integer |
| buyer_product | integer or null |
| seller_product | integer or null |
| volume | number <double> |
| unit | string [ 1 .. 3 ] characters |
| line_number | integer or null [ 0 .. 2147483647 ] |
| external_id | string or null <= 255 characters |
{- "order": 0,
- "buyer_product": 0,
- "seller_product": 0,
- "volume": 0.1,
- "unit": "str",
- "line_number": 2147483647,
- "external_id": "string"
}{- "id": 0,
- "order": 0,
- "order_detail": {
- "id": 0,
- "type": "order",
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "order_created_at": "2019-08-24",
- "order_arrival_at": "2019-08-24",
- "buyer_company_status": "draft",
- "seller_company_status": "draft",
- "assessment_status": "pending",
- "value_chain": 0,
- "buyer_company_id": 2147483647,
- "seller_company_id": 2147483647,
- "company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "buyer_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "seller_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "signed_off_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "excluded_propagation_identifiers": null
}, - "buyer_product": 0,
- "buyer_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "seller_product": 0,
- "seller_product_detail": {
- "id": 0,
- "company_id": 0,
- "sku": "string",
- "name": "string",
- "description": "string",
- "scientific_name": "string",
- "common_name": "string",
- "type": "manufactured",
- "hs_code": "string",
- "commodity": "cattle",
- "composition": "simple",
- "external_id": "string",
- "assessment_status": "pending",
- "assessment_summary": null,
- "excluded_propagation_identifiers": null,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "due_diligence_statements": [
- 0
]
}, - "volume": 0.1,
- "unit": "str",
- "line_number": 2147483647,
- "external_id": "string",
- "traced_orders_detail": [
- {
- "id": 0,
- "type": "order",
- "buyer_external_id": "string",
- "seller_external_id": "string",
- "order_created_at": "2019-08-24",
- "order_arrival_at": "2019-08-24",
- "buyer_company_status": "draft",
- "seller_company_status": "draft",
- "assessment_status": "pending",
- "value_chain": 0,
- "buyer_company_id": 2147483647,
- "seller_company_id": 2147483647,
- "company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "buyer_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "seller_company": {
- "id": 0,
- "name": "string",
- "slug": "string",
- "type": "string",
- "city": "string",
- "country": "string",
- "nr_of_employees": 0,
- "nr_of_locations": 0,
- "default_currency": "string",
- "default_locale": "string",
- "data_room_consumer_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "signed_off_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "excluded_propagation_identifiers": null
}
], - "traced_origins_detail": [
- {
- "id": 0,
- "name": "string",
- "description": "string",
- "country_code": "st",
- "country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "location": null,
- "external_id": "string",
- "open_atlas_external_id": "string",
- "open_atlas_information": null,
- "pulse_params": {
- "identifier": "string",
- "model_identifier": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null
}
], - "is_complete_match": true,
- "seller_traced_suggestions": {
- "property1": null,
- "property2": null
}, - "pulse_params": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending"
}Returns a paginated list of value chain partners (suppliers/customers). Each entry includes the partner company name, country, contact details, status, and assessment status. Search by company_name or contact_name.
| assessment_status | string Enum: "failing" "in_progress" "mitigated" "passing" "pending"
|
| assessment_status__in | Array of strings Multiple values may be separated by commas. |
| company_name | string |
| company_name__endswith | string |
| company_name__icontains | string |
| company_name__startswith | string |
| contact_email | string |
| contact_email__endswith | string |
| contact_email__icontains | string |
| contact_email__startswith | string |
| contact_name | string |
| contact_name__endswith | string |
| contact_name__icontains | string |
| contact_name__startswith | string |
| country_code | string |
| country_code__in | Array of strings Multiple values may be separated by commas. |
| description | string |
| description__endswith | string |
| description__icontains | string |
| description__startswith | string |
| external_id | string |
| external_id__endswith | string |
| external_id__icontains | string |
| external_id__in | Array of strings Multiple values may be separated by commas. |
| external_id__startswith | string |
| failing_percentage_gte | number <double> Filter by minimum failing percentage (0-100) |
| id | integer |
| id__in | Array of integers Multiple values may be separated by commas. |
| is_self_managed | boolean |
| limit | integer Number of results to return per page. |
| offset | integer The initial index from which to return the results. |
| ordering | string Which field to use when ordering the results. |
| passing_percentage_gte | number <double> Filter by minimum passing percentage (0-100) |
| permission_granted | boolean |
| search | string A search term. |
| status | string Enum: "connected" "invitation_sent" "not_invited_yet" "revoked"
|
| status__in | Array of strings Multiple values may be separated by commas. |
| tags__name | string |
| tags__name__icontains | string |
| tags__name__in | Array of strings Multiple values may be separated by commas. |
| tags__slug | string |
| tags__slug__in | Array of strings Multiple values may be separated by commas. |
| type | string Enum: "customer" "franchise" "franchisor" "group_member" "group_parent" "investment" "investor" "supplier"
|
| type__in | Array of strings Multiple values may be separated by commas. |
{- "count": 123,
- "results": [
- {
- "id": 0,
- "company_name": "string",
- "type": "supplier",
- "description": "string",
- "status": "revoked",
- "country_code": "st",
- "country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "external_id": "string",
- "permission_granted": true,
- "is_self_managed": true,
- "contact_name": "string",
- "reciprocal_company_id": 0,
- "pulse_params": "string",
- "ownership_information": {
- "ownership_periods": [
- {
- "valid_from_month": "string",
- "valid_to_month": "string",
- "consolidation_approach": "equity_share",
- "ownership_percentage": "100"
}
], - "sector_code": "string",
- "notes": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null,
- "tags": [
- "string"
]
}
]
}Create a new value chain partner with company name, country code, and optional contact details.
| company_name required | string [ 1 .. 255 ] characters |
| type required | string (Type526Enum) Enum: "supplier" "customer" "investment" "investor" "franchise" "franchisor" "group_member" "group_parent"
|
| description | string or null |
| country_code required | string [ 1 .. 2 ] characters |
| external_id | string or null <= 255 characters |
| is_self_managed | boolean |
| contact_name required | string [ 1 .. 255 ] characters |
| contact_email required | string <email> [ 1 .. 254 ] characters |
| send_information_request | boolean Default: false |
object or null | |
| excluded_propagation_identifiers | any |
{- "company_name": "string",
- "type": "supplier",
- "description": "string",
- "country_code": "st",
- "external_id": "string",
- "is_self_managed": true,
- "contact_name": "string",
- "send_information_request": false,
- "ownership_information": {
- "ownership_periods": [
- {
- "valid_from_month": "string",
- "valid_to_month": "string",
- "consolidation_approach": "equity_share",
- "ownership_percentage": "100"
}
], - "sector_code": "string",
- "notes": "string"
}, - "excluded_propagation_identifiers": null
}{- "id": 0,
- "company_name": "string",
- "type": "supplier",
- "description": "string",
- "status": "revoked",
- "country_code": "st",
- "country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "external_id": "string",
- "permission_granted": true,
- "is_self_managed": true,
- "contact_name": "string",
- "reciprocal_company_id": 0,
- "pulse_params": "string",
- "ownership_information": {
- "ownership_periods": [
- {
- "valid_from_month": "string",
- "valid_to_month": "string",
- "consolidation_approach": "equity_share",
- "ownership_percentage": "100"
}
], - "sector_code": "string",
- "notes": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null,
- "tags": [
- "string"
]
}Returns a single value chain partner by ID with full details.
| id required | integer A unique integer value identifying this Value Chain. |
{- "id": 0,
- "company_name": "string",
- "type": "supplier",
- "description": "string",
- "status": "revoked",
- "country_code": "st",
- "country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "external_id": "string",
- "permission_granted": true,
- "is_self_managed": true,
- "contact_name": "string",
- "reciprocal_company_id": 0,
- "pulse_params": "string",
- "ownership_information": {
- "ownership_periods": [
- {
- "valid_from_month": "string",
- "valid_to_month": "string",
- "consolidation_approach": "equity_share",
- "ownership_percentage": "100"
}
], - "sector_code": "string",
- "notes": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null,
- "tags": [
- "string"
]
}Partially update an existing value chain partner.
| id required | integer A unique integer value identifying this Value Chain. |
| company_name | string [ 1 .. 255 ] characters |
| type | string (Type526Enum) Enum: "supplier" "customer" "investment" "investor" "franchise" "franchisor" "group_member" "group_parent"
|
| description | string or null |
| country_code | string [ 1 .. 2 ] characters |
| external_id | string or null <= 255 characters |
| is_self_managed | boolean |
| contact_name | string [ 1 .. 255 ] characters |
| contact_email | string <email> [ 1 .. 254 ] characters |
| send_information_request | boolean Default: false |
object or null | |
| excluded_propagation_identifiers | any |
{- "company_name": "string",
- "type": "supplier",
- "description": "string",
- "country_code": "st",
- "external_id": "string",
- "is_self_managed": true,
- "contact_name": "string",
- "send_information_request": false,
- "ownership_information": {
- "ownership_periods": [
- {
- "valid_from_month": "string",
- "valid_to_month": "string",
- "consolidation_approach": "equity_share",
- "ownership_percentage": "100"
}
], - "sector_code": "string",
- "notes": "string"
}, - "excluded_propagation_identifiers": null
}{- "id": 0,
- "company_name": "string",
- "type": "supplier",
- "description": "string",
- "status": "revoked",
- "country_code": "st",
- "country": {
- "name": "string",
- "alpha_2": "string",
- "alpha_3": "string",
- "numeric": "string",
- "official_name": "string",
- "flag": "string",
- "eu_status": "string"
}, - "external_id": "string",
- "permission_granted": true,
- "is_self_managed": true,
- "contact_name": "string",
- "reciprocal_company_id": 0,
- "pulse_params": "string",
- "ownership_information": {
- "ownership_periods": [
- {
- "valid_from_month": "string",
- "valid_to_month": "string",
- "consolidation_approach": "equity_share",
- "ownership_percentage": "100"
}
], - "sector_code": "string",
- "notes": "string"
}, - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "assessment_summary": null,
- "assessment_status": "pending",
- "excluded_propagation_identifiers": null,
- "tags": [
- "string"
]
}