Retrieves a paginated list of product lists for a specific store, optionally including line items.
product_lists.list_product_lists(strstore_number, ProductListListProductListsParams**kwargs) -> ProductListListProductListsResponse
GET/api/v2/public/stores/{store_number}/productlists
Retrieves a paginated list of product lists for a specific store, optionally including line items.
Retrieves a paginated list of product lists for a specific store, optionally including line items.
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
)
response = client.product_lists.list_product_lists(
store_number="store_number",
)
print(response.scroll_id){
"page_size": 0,
"page_start": 0,
"total_count": 0,
"list": [
{
"id": 0,
"line_count": 0,
"type": 0,
"app_username": "app_username",
"free_fields": [
{
"key": "key",
"value": "value"
}
],
"lines": [
{
"quantity": 0,
"barcode": "barcode",
"category_code": "category_code",
"colli": 0,
"is_decimal": true,
"parent_category_code": "parent_category_code",
"product_name": "product_name",
"product_number": "product_number",
"stock_pool": "stock_pool",
"store_walking_order": 0
}
],
"modified_on": "2019-12-27T18:11:19.117Z",
"name": "name",
"type_description": "type_description"
}
],
"list_body": {
"foo": "bar"
},
"list_filters": {
"foo": [
"string"
]
},
"next_page": 0,
"previous_page": 0,
"project_last_modified_date": "project_last_modified_date",
"scroll_id": "scroll_id",
"server_time": "server_time",
"sort_column": "sort_column",
"sort_order": "sort_order",
"task_last_modified_date": "task_last_modified_date"
}Returns Examples
{
"page_size": 0,
"page_start": 0,
"total_count": 0,
"list": [
{
"id": 0,
"line_count": 0,
"type": 0,
"app_username": "app_username",
"free_fields": [
{
"key": "key",
"value": "value"
}
],
"lines": [
{
"quantity": 0,
"barcode": "barcode",
"category_code": "category_code",
"colli": 0,
"is_decimal": true,
"parent_category_code": "parent_category_code",
"product_name": "product_name",
"product_number": "product_number",
"stock_pool": "stock_pool",
"store_walking_order": 0
}
],
"modified_on": "2019-12-27T18:11:19.117Z",
"name": "name",
"type_description": "type_description"
}
],
"list_body": {
"foo": "bar"
},
"list_filters": {
"foo": [
"string"
]
},
"next_page": 0,
"previous_page": 0,
"project_last_modified_date": "project_last_modified_date",
"scroll_id": "scroll_id",
"server_time": "server_time",
"sort_column": "sort_column",
"sort_order": "sort_order",
"task_last_modified_date": "task_last_modified_date"
}