Product Lists
Creates a new product list for a store, optionally including initial line items.
product_lists.create_product_list(strstore_number, ProductListCreateProductListParams**kwargs) -> ProductListCreateProductListResponse
POST/api/v2/public/stores/{store_number}/productlists
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
Deletes a product list by id, optionally archiving it or removing only its header.
product_lists.delete_product_list(strstore_number, ProductListDeleteProductListParams**kwargs) -> ProductListDeleteProductListResponse
DELETE/api/v2/public/stores/{store_number}/productlists
Adds or updates lines on an existing product list.
product_lists.update_product_list_lines(intid, ProductListUpdateProductListLinesParams**kwargs) -> ProductListUpdateProductListLinesResponse
POST/api/v2/public/stores/{store_number}/productlists/{id}