Retrieves a paginated list of receipt orders for a specific store.
ReceiptListStoreReceiptsPageResponse Receipts.ListStoreReceipts(ReceiptListStoreReceiptsParamsparameters, CancellationTokencancellationToken = default)
GET/api/v2/public/stores/{store_number}/orders/receipts
Retrieves a paginated list of receipt orders for a specific store.
Parameters
Returns
Retrieves a paginated list of receipt orders for a specific store.
ReceiptListStoreReceiptsParams parameters = new()
{
StoreNumber = "store_number",
ReceiptType = 0,
};
var page = await client.Receipts.ListStoreReceipts(parameters);
await foreach (var item in page.Paginate())
{
Console.WriteLine(item);
}{
"list": [
{
"order_number": "DEL-2025-001",
"store_number": "STORE001",
"datetime_created": "2019-12-27T18:11:19.117Z",
"datetime_expected": "2019-12-27T18:11:19.117Z",
"import_id": 0,
"order_type_id": 0,
"receipt_lines": [
{
"id": 1001,
"barcode": "8710400000123",
"category_code": "category_code",
"container_barcode": "container_barcode",
"description": "Organic Milk 1L",
"group_code": "group_code",
"line_number": 1,
"product_number": "PRD-001",
"received_quantity": 22,
"shipped_quantity": 24,
"updated_on": "2019-12-27T18:11:19.117Z"
}
],
"status": "status",
"store_gln": "store_gln",
"supplier_code": "SUP-042",
"supplier_name": "Acme Wholesale BV"
}
],
"next_page": 0,
"page_size": 0,
"page_start": 0,
"previous_page": 0,
"total_count": 0
}Returns Examples
{
"list": [
{
"order_number": "DEL-2025-001",
"store_number": "STORE001",
"datetime_created": "2019-12-27T18:11:19.117Z",
"datetime_expected": "2019-12-27T18:11:19.117Z",
"import_id": 0,
"order_type_id": 0,
"receipt_lines": [
{
"id": 1001,
"barcode": "8710400000123",
"category_code": "category_code",
"container_barcode": "container_barcode",
"description": "Organic Milk 1L",
"group_code": "group_code",
"line_number": 1,
"product_number": "PRD-001",
"received_quantity": 22,
"shipped_quantity": 24,
"updated_on": "2019-12-27T18:11:19.117Z"
}
],
"status": "status",
"store_gln": "store_gln",
"supplier_code": "SUP-042",
"supplier_name": "Acme Wholesale BV"
}
],
"next_page": 0,
"page_size": 0,
"page_start": 0,
"previous_page": 0,
"total_count": 0
}