Amazon's Selling Partner API is the REST/JSON API replacement for the older XML-based Merchant Web Services(MWS) API. The SP-API is used to exchange order and inventory data for the purposes of selling items on the Amazon website. Use with any appropriate language tags.
Questions tagged [amazon-selling-partner-api]
195 questions
3
votes
0 answers
trouble with aws, powershell and the Signature
i want to play with the Amazon Selling Partner API. From Postman everything works fine. From Powershell not.
I tried to derive my powershell script from the documentation https://docs.aws.amazon.com/general/latest/gr/sigv4_signing.html and the…

Tabbedy
- 63
- 1
- 4
3
votes
2 answers
How do I update inventory and shipping tracking information through SP-API as a Seller?
I need to retrieve orders through Amazon's Seller SP-API, regularly update the inventory for all of our SKUs that are listed on Amazon as well as update Amazon with the shipment tracking number and status when the order is shipped out.
So far, I am…

jroyce
- 2,029
- 2
- 22
- 45
3
votes
2 answers
Amazon Fees API Transaction Summary
I am using the Amazon Marketplace Web Service Order API:
https://developer.amazonservices.com/gp/mws/api.html/181-8217517-6357550?ie=UTF8&group=orders§ion=orders&version=latest
Is there a transaction summary API for Amazon?
I want to calculate…

Joseph Anderson
- 4,114
- 4
- 45
- 99
2
votes
1 answer
is there any endpoint in amazon sp api to get seller Id?
I want to update the listing quantity on amazon through patchlistingItem API but it requires SellerID , I can't find any endpoint to get sellerId (I have only a refresh token ) of sellers that are authorized with our…

Talha Khadim
- 23
- 5
2
votes
0 answers
Amazon SP API - Get product SKU by ASIN
Using Amazon Selling Partner API, how can you get product's SKU number knowing only ASIN. I am not seller.
Tried different versions of "Catalog Items API", but none of them returns SKU in response.
Here, GET /catalog/v0/items/{asin} (getCatalogItem)…

PATAPOsha
- 372
- 3
- 18
2
votes
1 answer
How to update Seller Order Id with Amazon SP API
I have been trying to update Seller Order ID with SP API Feeds API. But it is getting updated on sellercentral.
Bellow is my XML Feed Document:

Nauman Bashir
- 101
- 1
- 7
2
votes
2 answers
Setting up Amazon SP-API Notification API
Trying to set up Amazon SP-API Notifications Api but I am running into a few issues
I have setup everything up to creating a destination and subscription for SQS. After completing that part, I am now stuck on how to get the information to a specific…

Amr Mashrah
- 177
- 13
2
votes
0 answers
Using Amazon SP-API - getBillOfLading returning null payload but success repsonse
When we call the get the BOL report the payload is blank - The response is 200 success
{
“payload”: {}
}

user15559797
- 31
- 2
2
votes
1 answer
Amazon SP-API Listings API putListingsItem How To Update price and quantity? Node.js
I am using amazon-sp-api (JavaScript client for the Amazon Selling Partner API) but this is not limited to this client. All I want to do is use the Amazon SP-API Listings API's putListingsItem call to update the price and quantity of an item I have…

rom
- 666
- 2
- 9
- 31
2
votes
0 answers
Bundling amazon-sp-api with webpack
I'm, trying to generate a bundle from a javascript to get some requests from Amazon Selling Partner API. Actually, I have a mockup of a getOrders request which works in Node.js by using the
[amazon-sp-api client package]…

Roberto C. Rodriguez-Hidalgo
- 607
- 9
- 18
2
votes
0 answers
How to create an offer for an existing ASIN on Amazon?
I am looking for creating an offer by having the ASIN, and the inventory options (SKU, quantity, price etc).
We already have access to the Amazon SP API:
const SellingPartnerAPI = require('amazon-sp-api');
const TOKEN = '...';
(async () => {
…

Ionică Bizău
- 109,027
- 88
- 289
- 474
2
votes
0 answers
Amazon sp_api - Get Orders Address with Restricted Data Token
I'm trying to get the Buyer info from the Amazon sp_api, especially from the get_orders call. We now got the authorization to request a RDT but I don't really understand how to implement this in my Python script.
I found something like this:
res =…

Luis Blatz
- 21
- 2
2
votes
0 answers
How to use the productsearch API from Amazon in the SP API?
I have an example when the productsearch in the Amazon Catalogue returns the expected product, but in the listCatalogItems it doesn't. I am not sure if the first is accessible in the API, but there should be a similar alternative I…

Ionică Bizău
- 109,027
- 88
- 289
- 474
2
votes
0 answers
Shipment Id from Amazom SP API?
AMAZON-SP-API to pull data from amazon's seller account.Can anybody tell me how to get shipment id and FNSKU from API?. I pulled data from orders and catalog API but did not found any shipment id related to it.Neither the documentation lists the API…

Manibha Jain
- 94
- 7
2
votes
1 answer
How to do the correct request signature for amazon spapi with aws4?
I make an integration with amazon spapi, but I couldn't get restricted token from api. I couldn't sign the request. My signed request doesn't match the api's one. Here is my signature code with js. The code make an Autharization sentence and I try…

ErkanK
- 95
- 7