Retrieves products at a specific store location.
Retrieves products at a specific store location.
Path Parameters
Query Parameters
When true, enables advanced search mode.
Optional customer order number filter.
Optional customer order shipment number filter.
The number of items per page.
The starting page index for pagination.
Optional text to search products by name or barcode.
Header Parameters
Returns
Additional body-level metadata for the list.
Active filter criteria applied to the result set, keyed by field name.
Next page number, or null when on the last page.
Maximum number of items returned per page.
Current page number (1-based).
Previous page number, or null when on the first page.
Last modified date/time of the project.
Opaque scroll identifier for deep-pagination scenarios.
Server UTC date/time when the response was generated.
Column name the results are sorted by.
Sort direction.
Last modified date/time of the task.
Total number of records matching the query across all pages.
Retrieves products at a specific store location.
curl https://api.colleqtive.net/api/v2/public/stores/$STORE_NUMBER/locations/$LOCATION_CODE/products \
-H "Authorization: $COLLEQTIVE_BEARER_TOKEN"{
"list": [
{
"product_number": "PRD-001",
"barcode": "8710400000123",
"customer_order_line_number": 1,
"customer_order_number": "CO-2025-001",
"customer_order_shipment_line_number": 1,
"customer_order_shipment_number": "SH-2025-001",
"image_url": "https://cdn.example.com/products/prd-001.jpg",
"product_description": "Organic Milk 1L",
"quantity": 15
}
],
"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": [
{
"product_number": "PRD-001",
"barcode": "8710400000123",
"customer_order_line_number": 1,
"customer_order_number": "CO-2025-001",
"customer_order_shipment_line_number": 1,
"customer_order_shipment_number": "SH-2025-001",
"image_url": "https://cdn.example.com/products/prd-001.jpg",
"product_description": "Organic Milk 1L",
"quantity": 15
}
],
"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
}