You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bayron412 edited this page Oct 19, 2015
·
2 revisions
Hello,
I'm trying to get GetMatchingProduct function but not like sending the parameter sf.params.ASINList.
This is an example of the call
var sf = new MWS.Products.requests.GetMatchingProduct({ "marketPlaceId": marketPlaceId });
sf.params.MarketplaceId.value = marketPlaceId;
sf.params.ASINList.value = { "ASINList.ASIN.1": 'XXXXXX' };
client.invoke(sf, function (result) {
console.log("--------");
console.log(JSON.stringify(result));
console.log("--------");
var builder = new xml2js.Builder();
var xml = builder.buildObject(result);
});