## List Store Receipts `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 - `ReceiptListStoreReceiptsParams parameters` - `required string storeNumber` The store number. - `required Int receiptType` The receipt type (required). - `Long fromID` Filter from this receipt ID. - `Boolean isSubmitted` Filter by submission status. - `DateTimeOffset lastModifiedDate` Filter by last modified date. - `string orderNumber` Filter by order number. - `Int pageSize` The number of records per page. - `Int pageStart` The page number to start from. - `Long toID` Filter up to this receipt ID. ### Returns - `class ReceiptListStoreReceiptsPageResponse:` - `required IReadOnlyList List` - `required string OrderNumber` The order number. - `required string StoreNumber` The store number. - `DateTimeOffset DatetimeCreated` The datetime the order was created. - `DateTimeOffset DatetimeExpected` The expected delivery datetime. - `Long ImportID` The import identifier. - `Int OrderTypeID` The order type identifier. - `IReadOnlyList? ReceiptLines` The receipt lines for this order. - `Long ID` The receipt line ID. - `string? Barcode` The product barcode. - `string? CategoryCode` The product category code. - `string? ContainerBarcode` The container barcode. - `string? Description` A description of the line. - `string? GroupCode` The group code. - `Int? LineNumber` The line number. - `string? ProductNumber` The product number. - `Double ReceivedQuantity` The quantity received. - `Double ShippedQuantity` The quantity shipped. - `DateTimeOffset UpdatedOn` When the line was last updated. - `string? Status` The order status. - `string? StoreGln` The store GLN. - `string? SupplierCode` The supplier code. - `string? SupplierName` The supplier name. - `Int? NextPage` - `Int PageSize` - `Int PageStart` - `Int? PreviousPage` - `Int TotalCount` ### Example ```csharp 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); } ```