* Uncomment to try out Mock Service that simulates MarketplaceWebServiceProducts
 * responses without calling MarketplaceWebServiceProducts service.
 *
 * Responses are loaded from local XML files. You can tweak XML files to
 * experiment with various outputs during development
 *
 * XML files available under MarketplaceWebServiceProducts/Mock tree
 *
 ***********************************************************************/
//$service = new MwsProductsMock();
/************************************************************************
 * Setup request parameters and uncomment invoke to try out
 * sample for Get Competitive Pricing For ASIN Action
 ***********************************************************************/
// @TODO: set request. Action can be passed as GetCompetitivePricingForASIN
$request = new GetCompetitivePricingForASINRequest();
$request->setSellerId(MERCHANT_ID);
// object or array of parameters
invokeGetCompetitivePricingForASIN($service, $request);
/**
 * Get Get Competitive Pricing For ASIN Action Sample
 * Gets competitive pricing and related information for a product identified by
 * the MarketplaceId and ASIN.
 *
 * @param MwsProductsInterface $service instance of MwsProductsInterface
 * @param mixed                                   $request GetCompetitivePricingForASIN or array of parameters
 */
function invokeGetCompetitivePricingForASIN(MwsProductsInterface $service, $request)
{
    try {
        $response = $service->GetCompetitivePricingForASIN($request);
Beispiel #2
0
 /**
  * Get Competitive Pricing For ASIN
  * Gets competitive pricing and related information for a product identified by
  * the MarketplaceId and ASIN.
  *
  * @param mixed $request array of parameters for GetCompetitivePricingForASIN request or GetCompetitivePricingForASIN object itself
  *
  * @see GetCompetitivePricingForASINRequest
  * @return Model\GetCompetitivePricingForASINResponse
  *
  * @throws \Exception
  */
 public function getCompetitivePricingForASIN($request)
 {
     if (!$request instanceof Model\GetCompetitivePricingForASINRequest) {
         $request = new Model\GetCompetitivePricingForASINRequest($request);
     }
     $parameters = $request->toQueryParameterArray();
     $parameters['Action'] = 'GetCompetitivePricingForASIN';
     $httpResponse = $this->_invoke($parameters);
     $response = Model\GetCompetitivePricingForASINResponse::fromXML($httpResponse['ResponseBody']);
     $response->setResponseHeaderMetadata($httpResponse['ResponseHeaderMetadata']);
     return $response;
 }