0

我正在尝试使用这两个 API 调用来获得产品定价和有竞争力的定价。

https://github.com/amzn/ sell-partner-api-docs/blob/main/references/product-pricing-api/productPricingV0.md#getpricing

https://github.com/amzn/ sell-partner-api-docs/blob/main/references/product-pricing-api/productPricingV0.md#getcompetitivepricing

根据以下内容,我的一切都适用于正常的 B2C 定价。

在此处输入图像描述 给我一个回应

{
    "payload": [
        {
            "status": "Success",
            "ASIN": "B003X2CREY",
            "Product": {
                "Identifiers": {
                    "MarketplaceASIN": {
                        "MarketplaceId": "A1F83G8C2ARO7P",
                        "ASIN": "B003X2CREY"
                    }
                },
                "Offers": [
                    {
                        "BuyingPrice": {
                            "ListingPrice": {
                                "CurrencyCode": "GBP",
                                "Amount": 169.42
                            },
                            "LandedPrice": {
                                "CurrencyCode": "GBP",
                                "Amount": 169.42
                            },
                            "Shipping": {
                                "CurrencyCode": "GBP",
                                "Amount": 0.00
                            }
                        },
                        "RegularPrice": {
                            "CurrencyCode": "GBP",
                            "Amount": 169.42
                        },
                        "FulfillmentChannel": "MERCHANT",
                        "ItemCondition": "New",
                        "ItemSubCondition": "New",
                        "SellerSKU": "LV429407"
                    }
                ]
            }
        }
    ]
}

如果我复制这个完全相同的调用并现在添加OfferType: B2B它现在会发出未经授权的错误。

在此处输入图像描述

如果有人有想法,将不胜感激。

4

1 回答 1

0

我已经与亚马逊支持人员进行了交谈,他们的回复如下。

“Customer”的CustomerType值并不是针对所有卖家推出的,只有部分卖家参与了beta测试,其他卖家会出现访问被拒绝的问题。

我猜目前并非所有的 SP-API 都已完全开发。

于 2021-08-20T07:53:26.653 回答