diff --git a/src/MWSClient.php b/src/MWSClient.php index 659704c..a46e037 100644 --- a/src/MWSClient.php +++ b/src/MWSClient.php @@ -159,7 +159,7 @@ public function GetCompetitivePricingForASIN($asin_array = []) $array = []; foreach ($response as $product) { if (isset($product['Product']['CompetitivePricing']['CompetitivePrices']['CompetitivePrice']['Price'])) { - $array[$product['Product']['Identifiers']['MarketplaceASIN']['ASIN']] = $product['Product']['CompetitivePricing']['CompetitivePrices']['CompetitivePrice']['Price']; + $array[$product['Product']['Identifiers']['MarketplaceASIN']['ASIN']] = $product['Product']['CompetitivePricing']['CompetitivePrices']['CompetitivePrice']; } } return $array;