Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 days ago.
Improve this question
May I retrieve the count of FBA sellers for a product through api?
User may input the product name and by amazon api we have to retrieve the count of FBA for that product. If yes than can you reference the documentation link
Please let me know if you need more description...
Here is the documentation:
http://docs.developer.amazonservices.com/en_US/products/Products_GetCompetitivePricingForASIN.html
http://docs.developer.amazonservices.com/en_US/products/Products_GetLowestOfferListingsForASIN.html
The operation you need to run is called GetCompetitivePricingForASIN and / or GetLowestOfferListingsForASIN
You can download several example libs here:
https://developer.amazonservices.com/gp/mws/api.html/185-9907857-4122940?ie=UTF8&group=products§ion=products&version=latest
A part of the response you'll get is (in GetCompetitivePricingForASIN):
<NumberOfOfferListings>
<OfferListingCount condition="Any">11</OfferListingCount>
<OfferListingCount condition="Used">1</OfferListingCount>
<OfferListingCount condition="New">10</OfferListingCount>
</NumberOfOfferListings>
and in GetLowestOfferListingsForASIN:
<FulfillmentChannel>Merchant</FulfillmentChannel>
You then can simply count the number of Merchant / Amazon Sellers
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 days ago.
Improve this question
enter image description here
I'm sending a request to the url address with postman. The value in Response-purchaseOrders, which I have attached as a response, returns. In this response, there is no stock code information in the products :/
I need the customer code, model number (stock code) information of the products in the order list.
Marketplaces id = A33AVAJ2PDY3EV
host(end point) = https://sellingpartnerapi-eu.amazon.com
region = eu-west-1
How can I get STOCK CODE (MODEL NUMBER) Information?
enter image description here
You can also download order reports using the reports API, but the columns managed in seller central do not include model:
https://sellercentral-europe.amazon.com/order-reports-and-feeds/column-picker?source=/order-reports-and-feeds/reports/ref=xx_orderrpt_dnav_home
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I am working with shopeware 6 and adding the data with APIs. Using their documentation i have implemented the APIs for adding categories. Because they have given it in the docs. For more API info they asked to open swagger link.
So i tried it. But in the swagger there is no proper explanation of APIs. Somehow i manage to implement manufacturer API. But Now not able to implement add product APIs.
Please help me and let me know the required fields for the add product apis. I have tried API with some data but got error.
URL- https://www.meptrade.co.uk/api/v1/product Type - POST {
"stock":1000, "taxId":"f6ac5dsvjbd7wd3b2i32bb89e2e802fc1a1e",
"price":"100", "name":"test",
"manufacturerId":"72f26544ddfbb55eb3bwbt348ec0ea717" }
Error:-
{"errors":[{"code":"c1051bb4-d103-4f74-8988-acbcafc7fdc3","status":"400","detail":"This
value should not be blank.","template":"This value should not be
blank.","meta":{"parameters":{"{{ value
}}":"null"}},"source":{"pointer":"/0/productNumber"}}]}
The error says you are missing a required field, which in this case is the productNumber. A product needs several required fields. You can look them up in the ProductDefinition (they have the Required flag)
You need at least:
name
manufacturer
productNumber
tax
price
stock
You could also have a look at the product api test which creates a product in its tests.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 days ago.
Improve this question
I've been searching around for awhile and cannot find a good solution for this.
I want to get a list of all videos available on Amazon Prime Instant Video or at least a list of all Amazon Prime Instant Videos available matching a search query.
I've loaded the PHP Amazon Product Advertising API library.
This is where I get stuck. I'm not sure if this can be done using this library and I can't find any documentation how to do it.
This thread seems to indicate that it's not possible, which I find baffling.
Anyone have any luck?
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 days ago.
Improve this question
I use Prestashop and EBAY and AMAZON module.
Sometimes I used PHP script (change price database 2 table) fot update all my specific category price.
But this operation do not give input for update AMAZON and EBAY module.
For update products on ebay and Amazon I need to open single product and click on save.
How can I simulate each click category for mass update on ebay and Amazon.
In your script, just call the hook ( Hook::exec('actionAdminProductsControllerSaveBefore'); in your case if i'm right, or use the one used in amazon/ebay modules).
Be carefull, they will probably need some query parameters, like id_product, so set them up before your call the hook ( $_POST["id_product"] = $id_product; )
Hope it help.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
i want to add an item to ebay using ebay API and PHP i read their website for hours and i'm lost. i created a developer account. but what should i do after that? i read about "Add item" call http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/AddItem.html but i have no idea on how to use that?
Please help !!
Please check this code here
https://github.com/rishiv3/ebayAddItem
I have made for adding new items on ebay also you can upload max 12 images with that and if needed you can store values on your database as well.
Just grab the keys from registering here
http://developer.ebay.com
Hope it will help you :)
In addition to taking a look at the eBay tutorial, I've thrown a wrapper around the eBay Accelerator toolkit that might be useful for some sample / example code.