Amazon Seller Feedback
Amazon Seller Feedback Parameters
Parameter
Type
Description
https://ecom.shifter.io/v1?engine=amazon&api_key=<YOUR_API_KEY>&type=seller_feeback&seller_id=AAZRLVTNON75ZAmazon Seller Feedback Integration Examples
curl --request GET --url "https://ecom.shifter.io/v1?engine=amazon&api_key=<YOUR_API_KEY>&type=seller_feeback&seller_id=AAZRLVTNON75Zconst http = require("https");
const options = {
"method": "GET",
"hostname": "ecom.shifter.io",
"port": null,
"path": "/v1?engine=amazon&api_key=<YOUR_API_KEY>&type=seller_feeback&seller_id=AAZRLVTNON75Z",
"headers": {}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.end();Last updated
Was this helpful?