Product Sorting
Product Sorting API Methods
GET Sorting Algorithms
GET Sorting Algorithmsimport 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
POST Create Sorting AlgorithmPATCH Update Sorting Algorithm
PATCH Update Sorting AlgorithmGET List All Addable Products for the Algorithm
GET List All Addable Products for the AlgorithmGET List All Products in an Algorithm
GET List All Products in an AlgorithmSort Option API Methods
GET Sort Options
GET Sort OptionsPOST Create Sort Option
POST Create Sort OptionPOST Add Sorting Algorithms to Sort Option
POST Add Sorting Algorithms to Sort OptionProduct Sorting Item API Methods
GET Product Sorting Items
GET Product Sorting ItemsPOST Create Product Sorting Items
POST Create Product Sorting ItemsDELETE Product Sorting Items
DELETE Product Sorting ItemsLast updated
Was this helpful?

