Shane Rutter
Shane Rutter

Reputation: 109

Amazon SP-API B2B Price Issues

I am trying to get product pricing and competitive pricing, using the two API calls.

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

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

I have everything working for normal B2C pricing, based on the below.

enter image description here Giving me a response of

{
    "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"
                    }
                ]
            }
        }
    ]
}

If I duplicate this exact same call and now add the OfferType: B2B it now gives off a unauthorized error.

enter image description here

If anyone has idea that would be much appreciated.

Upvotes: 0

Views: 1016

Answers (2)

user22119859
user22119859

Reputation: 1

do you know /feeds/2021-06-30/feeds feedType set POST_PRODUCT_PRICING_DATA, then you can make the xml by Price.xsd. if you success, please tell me

Upvotes: 0

Shane Rutter
Shane Rutter

Reputation: 109

I have spoken to Amazon Support and they have responded with the following.

The CustomerType value of "Customer" is not launched for all sellers, only certain sellers are part of the beta testing, and other sellers will get the access denied issue.

I guess not all of the SP-API are fully developed at present.

Upvotes: 0

Related Questions