Skip to content
Get started

Retrieves a paginated list of delivery orders.

DeliveryListDeliveriesPageResponse Deliveries.ListDeliveries(DeliveryListDeliveriesParams?parameters, CancellationTokencancellationToken = default)
GET/api/v2/public/orders/deliveries

Retrieves a paginated list of delivery orders.

ParametersExpand Collapse
DeliveryListDeliveriesParams parameters
string deliveryDate

Filter by delivery date.

string groupCode

Filter by group code.

Boolean isSubmitted

Filter by submission status.

string lastModifiedDate

Filter by last modified date.

string orderNumber

Filter by order number.

Int pageSize

The number of records per page.

formatint32
Int pageStart

The page number to start from.

formatint32
string status

Filter by order status.

string storeNumber

Filter by store number.

string supplierCode

Filter by supplier code.

string supplierName

Filter by supplier name.

ReturnsExpand Collapse
class DeliveryListDeliveriesPageResponse:

Generic paginated response wrapper.

required IReadOnlyList<DeliveryListDeliveriesResponse> List

Collection of items for the current page.

DateTimeOffset DatetimeCreated
formatdate-time
DateTimeOffset DatetimeExpected
formatdate-time
string? ExternalReferenceNumber
Long ImportID
formatint64
Boolean IsDownloaded
Int? NoOfContainers
formatint32
IReadOnlyList<OrderLine>? OrderLines
string? Barcode
string? BaseUnit
string? CategoryCode
string? ContainerBarcode
string? CustomerOrderNumber
string? CustomerOrderShipmentNumber
Int? CustomerOrderShipmentNumberLineNumber
formatint32
string? Description
string? GroupCode
Int LineNumber
formatint32
string? ProductNumber
string? PurchaseUnitBarcode
string? PurchaseUnitProductNumber
Double? PurchaseUnitQuantity
formatdouble
Double Quantity
formatdouble
Double ReceivedQuantity
formatdouble
Int TargetStockPool
formatint32
string? OrderNumber
string? OrderType
string? Status
string? StoreGln
string? StoreNumber
Long? StoreOrigin
formatint64
string? SupplierCode
string? SupplierName
string? TracingUrl
DateTimeOffset UpdatedOn
formatdate-time
IReadOnlyDictionary<string, JsonElement>? ListBody

Additional body-level metadata for the list.

IReadOnlyDictionary<string, IReadOnlyList<string>>? ListFilters

Active filter criteria applied to the result set, keyed by field name.

Int? NextPage

Next page number, or null when on the last page.

formatint32
Long PageSize

Maximum number of items returned per page.

formatint64
Long PageStart

Current page number (1-based).

formatint64
Long? PreviousPage

Previous page number, or null when on the first page.

formatint64
string? ProjectLastModifiedDate

Last modified date/time of the project.

string? ScrollID

Opaque scroll identifier for deep-pagination scenarios.

string? ServerTime

Server UTC date/time when the response was generated.

string? SortColumn

Column name the results are sorted by.

string? SortOrder

Sort direction.

string? TaskLastModifiedDate

Last modified date/time of the task.

Long TotalCount

Total number of records matching the query across all pages.

formatint64

Retrieves a paginated list of delivery orders.

DeliveryListDeliveriesParams parameters = new();

var page = await client.Deliveries.ListDeliveries(parameters);
await foreach (var item in page.Paginate())
{
    Console.WriteLine(item);
}
{
  "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
}