May 2022 SP-API Release Announcement #2289 And Update our library #191
abuzuhri
announced in
Announcements
Replies: 4 comments
-
Hello, I found this type of report missing,Vendor retail analytics reports:reportType value: GET_VENDOR_SALES_REPORT |
Beta Was this translation helpful? Give feedback.
0 replies
-
Also the financial report GET_DATE_RANGE_FINANCIAL_TRANSACTION_DATA is missing as well. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Missing report added |
Beta Was this translation helpful? Give feedback.
0 replies
-
Product GetCatalogItem Version 2022-04-01var data = await amazonConnection.CatalogItem.GetCatalogItem202204Async(
new Parameter.CatalogItems.ParameterGetCatalogItem
{
ASIN = "B00JK2YANC",
includedData = new[] { IncludedData.attributes,
IncludedData.salesRanks,
IncludedData.summaries,
IncludedData.productTypes,
IncludedData.relationships,
IncludedData.dimensions,
IncludedData.identifiers,
IncludedData.images }
}); Product SearchCatalogItems Version 2022-04-01var data = await amazonConnection.CatalogItem.SearchCatalogItems202204Async(
new Parameter.CatalogItems.ParameterSearchCatalogItems202204
{
keywords = new[] { "vitamin c" },
includedData = new[] { IncludedData.attributes,
IncludedData.salesRanks,
IncludedData.summaries,
IncludedData.productTypes,
IncludedData.relationships,
IncludedData.dimensions,
IncludedData.identifiers,
IncludedData.images }
}); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Updated in our library for Amazon May 2022 SP-API Release
New version of Catalog Items API
The new Catalog Items API version 2022-04-01 improves the API experience and addresses developer feedback with the following changes:
Added identifier-based searches to the searchCatalogItems operation, enabling batch-like requests with up to 20 identifiers per request (ASINs, UPCs, EANs, etc.)
Added dimensions data set, providing normalized item and package dimensions
Added display names for product category, product subcategory, and browse classification
Expanded identifying attributes to item summaries (item classification, package quantity, part number, website display group)
Added browse classifications and website display groups to sales ranks
Aligned searchCatalogItems and getCatalogItem operations to use the same data sets, including attributes
Replaced variations with relationships to allow for multiple relationship types to be represented, such as package hierarchies
Added variation theme details (name to the relationships details)
New batch operations capabilities
The Product Fees API and Product Pricing API now include batch operations for retrieving information for a list of products. We strongly encourage developers migrating to these APIs to use the new batch operations to most efficiently call these APIs instead of calling these APIs one-by-one.
Product Fees API includes a new getMyFeesEstimates operation that retrieves product fee estimates for a list of products and marketplaces. For more information, see the Product Fees API Use Case Guide.
Product Pricing API includes new getItemOffersBatch and getListingOffersBatch operations that retrieves product pricing and offer information in a list for products. For more information, see the Product Pricing API Use Case Guide.
New Purchase Shield program operations
New Extended Producer Responsibility (EPR) report types
New support for filtering and limiting Any Offer Changed notifications
Report Deprecations
Listings Reports
The following reports will be unavailable as of June 15, 2022:
GET_MERCHANT_LISTINGS_DEFECT_DATA
LISTINGS_DEFECT_REPORT_XL
These reports are replaced by GET_MERCHANTS_LISTINGS_FYP_REPORT. If you have an application that is affected by this change, you must update your application to use the GET_MERCHANTS_LISTINGS_FYP_REPORT report by June 15, 2022 to avoid service disruption.
Vendor Retail Analytics Reports
The following reports are announcing deprecation and will be unavailable as of June 27, 2022.
GET_VENDOR_SALES_DIAGNOSTIC_REPORT
GET_VENDOR_DEMAND_FORECAST_REPORT
GET_VENDOR_INVENTORY_HEALTH_AND_PLANNING
Each of these reports has a new version or replacement report available. For more information on migrating to the new versions and replacement reports, refer to the Vendor Retail Analytics Reports Migration Guide.
Inventory Reports
The following reports will be unavailable as of June 27, 2022:
GET_FBA_FULFILLMENT_INVENTORY_HEALTH_DATA
GET_EXCESS_INVENTORY_DATA
GET_FBA_INVENTORY_AGED_DATA
These reports are replaced by GET_FBA_INVENTORY_PLANNING_DATA. If you have an application that is affected by this change, you must update your application to use the GET_FBA_INVENTORY_PLANNING_DATA report by June 27, 2022 to avoid service disruption.
Brand Analytics Reports
The following reports will be unavailable as of June 30, 2022:
GET_BRAND_ANALYTICS_ITEM_COMPARISON_REPORT
GET_BRAND_ANALYTICS_ALTERNATE_PURCHASE_REPORT
There are no planned replacements for these reports. If you have an application that is affected by this change, be sure to ensure your applications no longer use the deprecated report types after June 30, 2022.
Beta Was this translation helpful? Give feedback.
All reactions