Shopping
pricelist.json
Returns just the SKUs and prices of the products available in a category.
method: GET
secured: true
url: /v1/shopping/pricelist/[Category GUID].json
hint: a good example is the category PersonalCare/Nutriance/HairCare
If sucessfull you will see a response like this:
{
"results": [
{
"SKU": "3940",
"Title": "Rich Revitalizing Shampoo™",
"Subtitle": "8.4 fluid oz.",
"PVAmount": "6",
"BVAmount": "11.85",
"Price": "$14.15",
"CaseSize": 6,
"CasePVAmount": "36",
"CaseBVAmount": "71.10",
"CasePrice": "$84.90"
},
{
"SKU": "3942",
"Title": "Enriching Conditioner™",
"Subtitle": "8.4 fluid oz.",
"PVAmount": "6",
"BVAmount": "11.85",
"Price": "$14.15",
"CaseSize": 6,
"CasePVAmount": "36",
"CaseBVAmount": "71.10",
"CasePrice": "$84.90"
}
],
"success": true,
"error": null
}