Retrieves a paginated list of delivery orders.
Retrieves a paginated list of delivery orders.
Query Parameters
Filter by delivery date.
Filter by group code.
Filter by submission status.
Filter by last modified date.
Filter by order number.
The number of records per page.
The page number to start from.
Filter by order status.
Filter by store number.
Filter by supplier code.
Filter by supplier name.
Returns
Additional body-level metadata for the list.
Active filter criteria applied to the result set, keyed by field name.
Next page number, or null when on the last page.
Maximum number of items returned per page.
Current page number (1-based).
Previous page number, or null when on the first page.
Last modified date/time of the project.
Opaque scroll identifier for deep-pagination scenarios.
Server UTC date/time when the response was generated.
Column name the results are sorted by.
Sort direction.
Last modified date/time of the task.
Total number of records matching the query across all pages.
Retrieves a paginated list of delivery orders.
curl https://api.colleqtive.net/api/v2/public/orders/deliveries \
-H "Authorization: $COLLEQTIVE_BEARER_TOKEN"{
"list": [
{
"datetime_created": "2019-12-27T18:11:19.117Z",
"datetime_expected": "2019-12-27T18:11:19.117Z",
"external_reference_number": "external_reference_number",
"import_id": 0,
"is_downloaded": true,
"no_of_containers": 0,
"order_lines": [
{
"barcode": "barcode",
"base_unit": "base_unit",
"category_code": "category_code",
"container_barcode": "container_barcode",
"customer_order_number": "customer_order_number",
"customer_order_shipment_number": "customer_order_shipment_number",
"customer_order_shipment_number_line_number": 0,
"description": "description",
"group_code": "group_code",
"line_number": 0,
"product_number": "product_number",
"purchase_unit_barcode": "purchase_unit_barcode",
"purchase_unit_product_number": "purchase_unit_product_number",
"purchase_unit_quantity": 0,
"quantity": 0,
"received_quantity": 0,
"target_stock_pool": 0
}
],
"order_number": "order_number",
"order_type": "order_type",
"status": "status",
"store_gln": "store_gln",
"store_number": "store_number",
"store_origin": 0,
"supplier_code": "supplier_code",
"supplier_name": "supplier_name",
"tracing_url": "tracing_url",
"updated_on": "2019-12-27T18:11:19.117Z"
}
],
"list_body": {
"foo": "bar"
},
"list_filters": {
"foo": [
"string"
]
},
"next_page": 4,
"page_size": 25,
"page_start": 3,
"previous_page": 2,
"project_last_modified_date": "2025-06-10T08:00:00Z",
"scroll_id": "DXF1ZXJ5QW5kRmV0Y2g",
"server_time": "2025-06-15T14:30:00Z",
"sort_column": "name",
"sort_order": "asc",
"task_last_modified_date": "2025-06-12T10:15:00Z",
"total_count": 142
}Returns Examples
{
"list": [
{
"datetime_created": "2019-12-27T18:11:19.117Z",
"datetime_expected": "2019-12-27T18:11:19.117Z",
"external_reference_number": "external_reference_number",
"import_id": 0,
"is_downloaded": true,
"no_of_containers": 0,
"order_lines": [
{
"barcode": "barcode",
"base_unit": "base_unit",
"category_code": "category_code",
"container_barcode": "container_barcode",
"customer_order_number": "customer_order_number",
"customer_order_shipment_number": "customer_order_shipment_number",
"customer_order_shipment_number_line_number": 0,
"description": "description",
"group_code": "group_code",
"line_number": 0,
"product_number": "product_number",
"purchase_unit_barcode": "purchase_unit_barcode",
"purchase_unit_product_number": "purchase_unit_product_number",
"purchase_unit_quantity": 0,
"quantity": 0,
"received_quantity": 0,
"target_stock_pool": 0
}
],
"order_number": "order_number",
"order_type": "order_type",
"status": "status",
"store_gln": "store_gln",
"store_number": "store_number",
"store_origin": 0,
"supplier_code": "supplier_code",
"supplier_name": "supplier_name",
"tracing_url": "tracing_url",
"updated_on": "2019-12-27T18:11:19.117Z"
}
],
"list_body": {
"foo": "bar"
},
"list_filters": {
"foo": [
"string"
]
},
"next_page": 4,
"page_size": 25,
"page_start": 3,
"previous_page": 2,
"project_last_modified_date": "2025-06-10T08:00:00Z",
"scroll_id": "DXF1ZXJ5QW5kRmV0Y2g",
"server_time": "2025-06-15T14:30:00Z",
"sort_column": "name",
"sort_order": "asc",
"task_last_modified_date": "2025-06-12T10:15:00Z",
"total_count": 142
}