Catalogue Item
GET Catalog Item
GET Catalog Itemimport requests
url = "https://{customer_api_url}/api/v1/catalog_items/"
api_token = "API TOKEN"
headers = {
'content-type': 'application/json',
'Authorization': 'Token {}'.format(api_token)
}
response = requests.get(url, headers=headers)
print(response.text)
POST Create Catalog Item
POST Create Catalog ItemDELETE Catalog Item
DELETE Catalog ItemLast updated
Was this helpful?

