## List Store Receipts `receipts.list_store_receipts(strstore_number, ReceiptListStoreReceiptsParams**kwargs) -> SyncCursorPage[ReceiptListStoreReceiptsResponse]` **get** `/api/v2/public/stores/{store_number}/orders/receipts` Retrieves a paginated list of receipt orders for a specific store. ### Parameters - `store_number: str` - `receipt_type: int` The receipt type (required). - `from_id: Optional[int]` Filter from this receipt ID. - `is_submitted: Optional[bool]` Filter by submission status. - `last_modified_date: Optional[Union[str, datetime]]` Filter by last modified date. - `order_number: Optional[str]` Filter by order number. - `page_size: Optional[int]` The number of records per page. - `page_start: Optional[int]` The page number to start from. - `to_id: Optional[int]` Filter up to this receipt ID. ### Returns - `class ReceiptListStoreReceiptsResponse: …` - `order_number: str` The order number. - `store_number: str` The store number. - `datetime_created: Optional[datetime]` The datetime the order was created. - `datetime_expected: Optional[datetime]` The expected delivery datetime. - `import_id: Optional[int]` The import identifier. - `order_type_id: Optional[int]` The order type identifier. - `receipt_lines: Optional[List[ReceiptLine]]` The receipt lines for this order. - `id: Optional[int]` The receipt line ID. - `barcode: Optional[str]` The product barcode. - `category_code: Optional[str]` The product category code. - `container_barcode: Optional[str]` The container barcode. - `description: Optional[str]` A description of the line. - `group_code: Optional[str]` The group code. - `line_number: Optional[int]` The line number. - `product_number: Optional[str]` The product number. - `received_quantity: Optional[float]` The quantity received. - `shipped_quantity: Optional[float]` The quantity shipped. - `updated_on: Optional[datetime]` When the line was last updated. - `status: Optional[str]` The order status. - `store_gln: Optional[str]` The store GLN. - `supplier_code: Optional[str]` The supplier code. - `supplier_name: Optional[str]` The supplier name. ### Example ```python import os from colleqtive_sdk import Colleqtive client = Colleqtive( bearer_token=os.environ.get("COLLEQTIVE_BEARER_TOKEN"), # This is the default and can be omitted ) page = client.receipts.list_store_receipts( store_number="store_number", receipt_type=0, ) page = page.list[0] print(page.import_id) ```