Questions tagged [amazon-selling-partner-api]

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.

195 questions
24
votes
2 answers

Amazon API Marking orders as shipped

I'm currently using the amazon orders API to get order details. I then create orders on our system, which then get shipped from here. I'd like to update the amazon orders once the goods have been shipped with our shipment number etc., but can't find…
George Duckett
  • 31,770
  • 9
  • 95
  • 162
17
votes
4 answers

Determine if 10 digit string is valid Amazon ASIN

I have a 10 digit string being passed to me, and I want to verify that it is a valid ASIN before doing more processing and/or redirection. I know that a non ISBN ASIN will always be non-numeric and 10 characters in length I just want to be able to…
RAD Moose
  • 177
  • 1
  • 1
  • 7
13
votes
1 answer

Purchase item from Amazon using API?

I'd like to programmatically automate making a purchase on Amazon from my Rails app as I have to manually make the same purchases week after week. This would be using my own billing information/account, not on behalf of a user. I've searched through…
Tom Hammond
  • 5,842
  • 12
  • 52
  • 95
12
votes
3 answers

amazon affiliate search ad script: Uncaught TypeError: Cannot read property 'getBoundingClientRect' of null

I have embedded Amazon affiliate native search Ad on my website. When I test it my dev laptop, the "Search ad" displays without any issues. However when deployed to hosting Provider, encounter runtime error and amazon search Ad not displayed. Please…
javapedia.net
  • 2,531
  • 4
  • 25
  • 50
9
votes
1 answer

Signature Version 4 Signing Process in PHP to access API Gateway endpoint

I am trying to create Authorized Signature to access IAM secured API gateway endpoint. $alg = "SHA256"; $CanonicalRequest =…
7
votes
2 answers

Using Amazon's affiliate API for autocompletion

On a website I'm building a search for Amazon products. This should display some information on the products I can pick up using their affiliate API. I can look up information on the products using this dependency (which I'm not entirely happy…
Kristof
  • 1,684
  • 2
  • 23
  • 49
6
votes
0 answers

Amazon Selling Partner API - How to get info about Refunds / Returns (Fulfillment by Amazon)

I'm successfully using the Amazon Selling Partner API to retrieve orders and order details that were last updated during a given time period. The challenge I am faced with now is determining whether a given order was returned and/or refunded. These…
vicatcu
  • 5,407
  • 7
  • 41
  • 65
5
votes
1 answer

How to convert Amazon MWS credentials to SP-API creds

Here are the seemingly clear instructions from Amazon. Simply send the following: sellingPartnerId, developerId, and mwsAuthToken I do this with httparty like so: query = { sellingPartnerId: "A3Kxxxxx", developerId: "753xxxx", mwsAuthToken:…
ToddT
  • 3,084
  • 4
  • 39
  • 83
4
votes
1 answer

Amazon SP-API Getting order items in order list API

The Amazon SP-API getorders API endpoint doesn't send the items of that orders. I want to show the orders with their items like in Amazon Seller central in my inventory. Calling the get items (getorderitems endpoint) for every order will be unwise.…
4
votes
0 answers

Amazon SP API how to send offer on existing product

I am working to integrate amazon SP API to send products offers on the platform. For now, I just need to send an offer for a product already existing on the platform I have the ASIN for the product I wish to offer. The issue is that I can't find a…
Alex Samson
  • 125
  • 2
  • 10
4
votes
0 answers

How to generate token for api.partner.microsoft.com to access Price and Offer under Sell Menu in partner Center

var cc = new ClientCredential(AppClientID, AppClientSecret); var context = new AuthenticationContext("https://login.windows.net/common"); var result = await context.AcquireTokenAsync("https://api.partner.microsoft.com/",…
Roushan
  • 264
  • 2
  • 14
3
votes
5 answers

How to get product information from amazon, just based on the URL?

I just have a link to a product page, at amazon. How do I get all the information (photo, price etc), in my ruby program, just using this link?
user85748
  • 1,213
  • 3
  • 14
  • 21
3
votes
0 answers

How to auto sync Amazon seller orders with SP-API?

Developing an app that should allow customers to connect their Amazon seller account, which would export all of their unshipped orders. Once tracking numbers are provided for their unshipped orders on my dashboard, it would send the tracking numbers…
Cornelius Wilson
  • 2,844
  • 4
  • 21
  • 41
3
votes
1 answer

Not able to update the inventory stock with patch/put listing Amazon SP API with PHP

I need your help, I tried all the mentioned suggestions (https://github.com/amzn/selling-partner-api-docs/issues/2167) but am still not able to update the inventory quantity with Amazon SP API. I am trying to update the quantity stock without…
Zaid Bin Khalid
  • 748
  • 8
  • 25
3
votes
1 answer

'Missing Auth Token' Response when calling Amazon SP-API

I am attempting to get a successful response from the AMZ SP-API. Below is my current 400 response. I believe the issue is with the headers. The docs here don't really state what the header contents needs to be. When I use the SaleWeaver package…
ah2Bwise
  • 82
  • 2
  • 17
1
2 3
12 13