Retrieve catalog item details
Learn how to retrieve information about an item in the Amazon catalog for the given ASIN and marketplaces.
Learn how to retrieve information about an individual item in the Amazon catalog for the given ASIN and marketplaces.
Prerequisites
To complete this tutorial, you need:
-
Authorization from the Selling Partner for whom you are making calls. Go to Authorizing Selling Partner API applications for more information.
-
Approval for the Product Listing role in your developer profile.
-
The Product Listing role selected in the App registration page for your application.
Handling generic JSON schemas in client libraries
If you have generated a client library, it is important to note that Swagger Codegen generates types based on properties defined in the Swagger models, and that Swagger Codegen will produce empty or incomplete types when an object is defined with
additionalProperties: true
. To handle such objects, use the--import-mappings
command-line parameter to map these objects to a generic JSON object type or a custom object type of your choosing.Example Swagger Codegen input parameters:
C#:
--import-mappings ItemAttributes=Newtonsoft.Json.Linq.JObject
Java:--import-mappings ItemAttributes=com.google.gson.JsonObject
Get information about a catalog item
Call the getCatalogItem
operation.
Updated about 5 hours ago