amzn-mws
Version:
amazon MWS api client
9 lines (8 loc) • 315 B
JavaScript
module.exports = {
action: 'GetReportList', //The MWS action
url: 'Reports', //The MWS endpoint
version: '2009-01-01', //MWS Version
responseParser: function(response) { //A function returning the significant portion of the parsed response.
return response.GetReportListResponse.GetReportListResult[0];
}
};