aivanouski/amazon-mws-orders

There is no license information available for the latest version (v1.3) of this package.

Amazon Marketplace Web Service Orders PHP Client Library Version 2013-09-01

v1.3 2016-10-12 22:02 UTC

This package is not auto-updated.

Last update: 2024-05-03 20:03:55 UTC


README

Amazon Marketplace Web Service Orders PHP Client Library - Version 2013-09-01

Installation

Install Composer and add amazon-mws-orders to your composer.json:

composer require aivanouski/amazon-mws-orders:dev-master

Version

Current version is MWSOrdersPHPClientLibrary-2013-09-01._V293335039_.

Installation

Add the reference into your composer.json :

    "aivanouski/amazon-mws-orders": "dev-master"
	composer update
Use in controller :

 $config = array (
   'ServiceURL' => $serviceUrl,
   'ProxyHost' => null,
   'ProxyPort' => -1,
   'ProxyUsername' => null,
   'ProxyPassword' => null,
   'MaxErrorRetry' => 3,
 );

 $service = new \MarketplaceWebServiceOrders_Client(
        AWS_ACCESS_KEY_ID,
        AWS_SECRET_ACCESS_KEY,
        APPLICATION_NAME,
        APPLICATION_VERSION,
        $config);
		
 $request = new \MarketplaceWebServiceOrders_Model_ListOrdersRequest();
 $request->setSellerId(MERCHANT_ID);
 
 $response = $service->ListOrders($request);