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
Deletes a product list by id, optionally archiving it or removing only its header.
Deletes a product list by id, optionally archiving it or removing only its header.
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.delete_product_list(
store_number="store_number",
product_list_id=0,
)
print(response)trueReturns Examples
true