Reputation: 33
My mission is to get Amazon sales orders out for a given time period and post these into a SAP ECC back end via SAP PI. I've managed to get the MWS scratchpad working and am a bit stuck as to how i would put the data from the scratch pad into postman or SOAPUI.
This is my mws scratchpad:
Upvotes: 1
Views: 980
Reputation: 33
thanks for your assistance again . The scratchapd works a dream. Yes, i am not sure how postman will do this either. I am calling from SAP PI, presumably some code will have to be written in java to handle the calculation of the signature and timestamp - i get the current error when posting in postman:
Upvotes: 0
Reputation: 11101
Everything you need is right here: Orders API
It tells you your endpoint, your operations, and your request and response parameters. What language do you use? If you use PHP, C#, or Java, there are client libraries that do all this for you, just plug in your account info.
For the ListOrders operation specifically, it's right here - ListOrders.
The response format is explained here.
You also need to calculate a signature, something that scratchpad and the MWS client libraries will do for you. Not sure how you can do that from Postman.
Upvotes: 1