Product Sorting
Product Sorting API Methods
GET Sorting Algorithms
import requests
url = "https://{customer_api_url}/api/v1/sorting_algorithms/"
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 Sorting Algorithm
PATCH Update Sorting Algorithm
GET List All Addable Products for the Algorithm
GET List All Products in an Algorithm
Sort Option API Methods
GET Sort Options
POST Create Sort Option
POST Add Sorting Algorithms to Sort Option
Product Sorting Item API Methods
GET Product Sorting Items
POST Create Product Sorting Items
DELETE Product Sorting Items
Last updated
Was this helpful?

