Product Collection
GET Product Collection
GET Product Collection
import requests
url = "https://{customer_api_url}/api/v1/product_collections/"
api_token = "API TOKEN"
headers = {
'content-type': 'application/json',
'Authorization': 'Token {}'.format(api_token)
}
response = requests.get(url, headers=headers)
print(response.text)POST Creating a Static Collection
POST Creating a Static CollectionPOST Add a Product to a Static Collection
POST Add a Product to a Static CollectionDELETE Product from Static Collection
DELETE Product from Static CollectionPOST Create Dynamic Collection
POST Create Dynamic CollectionPATCH Update a Dynamic Collection
PATCH Update a Dynamic CollectionDELETE Collection
DELETE CollectionGET List All Products in a Collection
GET List All Products in a CollectionGET List All Addable Products for a Collection
GET List All Addable Products for a CollectionLast updated
Was this helpful?

