I am trying to get product pricing and competitive pricing, using the two API calls.
I have everything working for normal B2C pricing, based on the below.
{
"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.
If anyone has idea that would be much appreciated.