Retrieves a paginated list of receipt orders for a specific store.
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).
formatint32
from_id: Optional[int]
Filter from this receipt ID.
formatint64
Filter by submission status.
last_modified_date: Optional[Union[str, datetime]]
Filter by last modified date.
formatdate-time
order_number: Optional[str]
Filter by order number.
page_size: Optional[int]
The number of records per page.
formatint32
page_start: Optional[int]
The page number to start from.
formatint32
to_id: Optional[int]
Filter up to this receipt ID.
formatint64
Returns
Retrieves a paginated list of receipt orders for a specific store.
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){
"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
}