2017 © Pedro Peláez
 

library retail-order-management

Software Development Kit for working with the Retail Order Management Web API

image

radial/retail-order-management

Software Development Kit for working with the Retail Order Management Web API

  • Thursday, January 12, 2017
  • by ryaan-anthony
  • Repository
  • 4 Watchers
  • 0 Stars
  • 1,721 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 10 Forks
  • 0 Open issues
  • 72 Versions
  • 0 % Grown

The README.md

ebay logo, (*1)

Retail Order Management Software Development Kit

unit test status Scrutinizer Code Quality, (*2)

A PHP implementation of the Retail Order Management API(s) that hides unnecessary details such as request/response handling and XML parsing from the API user in order to provide a minimal interface for remote messages and procedure calls., (*3)

Requires PHP 5.4 and later., (*4)

Compatible with Retail Order Management schema version 1.8.20., (*5)

Setup

For best results, install via Composer., (*6)

In composer.json:, (*7)

"require": {
    "ebayenterprise/retail-order-management": "~1.0"
}

Or with the Composer CLI:, (*8)

php composer.phar require ebayenterprise/retail-order-management:~1.0

Payloads

Payloads represent the data that is sent or received through the SDK., (*9)

// The payload factory can be used to create any of the
// supported payloads types.
$payloadFactory = new \eBayEnterprise\RetailOrderManagement\Payload\PayloadFactory;
// Instantiate a payload object with the factory by passing
// the full class name of the payload to the factory.
$payload = $payloadFactory
    ->buildPayload('\eBayEnterprise\RetailOrderManagement\Payload\Payment\StoredValueBalanceRequest');

// Payloads can be populated with data by:

// Calling setters for all of the required data.
$payload->setCardNumber('11112222')
    ->setPanIsToken(false)
    ->setRequestId('1234567890')
    ->setPin('5555')
    ->setCurrencyCode('USD');

// Deserializing a serialized set of data.
$payload->deserialize('<StoreValueBalanceRequest>...</StoredValueBalanceRequest>');

// Complete payload can now be validated.
try {
    $payload->validate();
} catch (\eBayEnterprise\RetailOrderManagement\Payload\Exception\InvalidPayload $e) {
    // The payload is invalid. The exception message, $e->getMessage(),
    // will contain details of the validation error.
}

// Serializing a payload will produce an XML representation of the payload.
$payload->serialize();

Request Payloads

Request payloads represent a set of data to be sent across the SDK., (*10)

/** @var \eBayEnterprise\RetailOrderManagement\Api\HttpApi $api */
$api;

// Request payloads will be created as necessary by the transport mechanism
// that will be sending the payload.
$payload = $api->getRequestBody();

// The payload should be populated with data necessary to make the call
// using the SDK.

// Payload interfaces expose methods to set data the data piecemeal.
$payload->setCardNumber('11112222')
    ->setPanIsToken(false)
    ->setRequestId('1234567890')
    ->setPin('5555')
    ->setCurrencyCode('USD');

// A serialized payload may also be deserialized to set all of the data
// in the serialization on the payload.
$payload->deserialize('<StoreValueBalanceRequest>...</StoreValueBalanceRequest>');

// Once the payload has been populated, it can be given back to the
// API and sent.
$api->setRequestBody($payload)->send();

Reply Payload

Reply payloads represent sets of data retrieved from the SDK., (*11)

// Get the reply payload from the API object, in this case the
// response from an HTTP API call. Assume $httpApi to be an
// \eBayEnterprise\RetailOrderManagment\Api\HttpApi object.
$payload = $httpApi->getResponseBody();

// If a payload was populated by the SDK, it will have been
// validated automatically. Validation can still be done on demand
// if desired.
try {
    $payload->validate();
} catch (\eBayEnterprise\RetailOrderManagement\Payload\Exception\InvalidPayload $e) {
    // The payload is invalid. The exception message, $e->getMessage(),
    // will contain details of the validation errors.
}

// Get methods will be present for any data in the payload.
$payload->getOrderId();
$payload->getCurrencyCode();

Sub-Payloads

The majority of payloads in the SDK are flat, all necessary data is set within a single payload object. In some cases, however, a payload will contain additional nested payloads., (*12)

/** @var \eBayEnterprise\RetailOrderManagment\Payload\OrderEvents\OrderShipped $payload */
$payload;

// Some payloads will contain an iterable of sub-payloads. In this case,
// $loyaltyPrograms will be an interable payload containing a collection
// of loyalty program payloads.
$loyaltyPrograms = $payload->getLoyaltyPrograms();

// The iterable is a complete payload and can be serialized, deserialized and
// validated like any other payload.
$loyaltyPrograms->validate();
$loyaltyPrograms->serialize();
$loyaltyPrograms->deserialize('<LoyaltyPrograms><LoyaltyProgram>...<LoyaltyProgram><LoyaltyProgram>...<LoyaltyProgram></LoyaltyPrograms>');

foreach ($loyaltyPrograms as $program) {
    // The objects in the iterable area also complete payloads.
    $program->validate();
    $program->setAccount('ABCDEFG');
}

// Iterable payloads will always provide a way of getting empty payloads
// that can be added to the iterable.
$loyaltyProgram $loyaltyPrograms->getEmptyLoyaltyProgram();

// Payload can now be filled out and added to the iterable.
$loyaltyProgram->setAccount('XYZ')->setProgram('RewardProgram');
$loyaltyPrograms->attach($loyaltyProgram);

// Sub-payloads may also be used to create a separate container of data
// within a payload or when a set of data cannot be trivially flattened
// into a single payload.
$destination = $payload->getShippingDestination();

// The shipping destination may be a mailing address (shipped to a customer)
// or a store front location (shipped to a retail store).
if ($destination instanceof \eBayEnterprise\RetailOrderManagement\Payload\OrderEvents\IMailingAddress) {
    $destination->getFistName();
    $destination->getLastName();
} elseif ($destination instanceof \eBayEnterprise\RetailOrderManagement\Payload\OrderEvents\IStoreFrontDetails) {
    $destination->getStoreName();
    $destination->getHours();
}

// In both cases, the object returned will still be a complete payload and
// can be treated as such.
$destination->validate();
$destination->deserialize();

HTTP API

The HTTP API is a transport mechanism for communicating with the web service APIs. It facilitates creating, sending and recieving payloads of a message., (*13)

// Use an HttpConfig instance to configure an HttpApi object for a message.
$apiConfig = new \eBayEnterprise\RetailOrderManagement\Api\HttpConfig(
    $apiKey, // authentication token for connecting to the api
    $apiHostname,
    $apiMajorVersion, // major version number of the service
    $apiMinorVersion, // minor version number of the service
    $storeId, // Retail Order Management store identifier
    $service, // type of service to communicate with (e.g. payments)
    $operation, // string representing the operation to be performed (e.g. creditcard/auth)
    $endPointParams = [] // optional, extra parameters for the request.
);
$httpApi = new \eBayEnterprise\RetailOrderManagement\Api\HttpApi($apiConfig);

try {
    // get the request payload for the message.
    $request = $httpApi->getRequestBody();
    // set the payload as the message body and send the request.
    $httpApi->setRequestBody($request)
        ->send();
    $reply = $httpApi->getResponseBody();
    // process response data

} catch (\eBayEnterprise\RetailOrderManagement\Payload\Exception\UnsupportedOperation $e) {
    // Exception may be thrown from: { send, getRequestBody, getResponseBody }
    // Handle the case where the service and operation specified in the configuration has no matching payload.
    print $e->getMessage();

} catch (\eBayEnterprise\RetailOrderManagement\Api\Exception\UnsupportedHttpAction $e) {
    // Exception may be thrown from: { send }
    // handle the case where the http method is configured with an invalid value
    print $e->getMessage();

} catch (\eBayEnterprise\RetailOrderManagement\Api\Exception\NetworkException $e) {
    // Exception may be thrown from: { send }
    // handle the case where the request takes longer than the timeout threshold or if the connection cannot be made or is lost
    print $e->getMessage();

} catch (\eBayEnterprise\RetailOrderManagement\Payload\Exception\InvalidPayload $e) {
    // Exception may be thrown from: { send, getRequestBody, getResponseBody }
    // handle the case where a payload fails validation
    print $e->getMessage();
}

AMQP API

Use the AMQP API to respond to batches of Retail Order Managment events., (*14)

// Similar to the HttpApi, start with by filling out a configuration object
$apiConfig = new Api\AmqpConfig(
    $connectionType, // string that configures the way the api connects to a queue.
                     // Use '\PhpAmqpLib\Connection\AMQPSSLConnection' to connect using ssl.
                     // Use '\PhpAmqpLib\Connection\AMQPConnection' to connect without ssl.
    $maxMessagesToProcess, // The number of message to process per batch
    $connectionHostname,
    $connectionPort,
    $connectionUsername,
    $connectionPassword,
    $connectionVhost,
    array $connectionContext,
    $connectionInsist,
    $connectionLoginMethod,
    $connectionLocale,
    $connectionTimeout,
    $connectionReadWriteTimeout,
    $queueName,
    // flags
    $queuePassive,
    $queueDurable,
    $queueExclusive,
    $queueAutoDelete,
    $queueNowait
);
$amqpApi = new Api\HttpApi($apiConfig);

// Get a PayloadIterator object in order to process messages.
$payloads = $amqpApi->fetch();

// Use `valid` to control the iteration over the messages. Each call attempts
// to retreive a message. If a message is received it is `ack`ed immediately.
while ($payloads->valid()) {
    try {
        // The AmqpApi does not deserialize payloads as it recieves them.
        // Deserialization happens during the call to PayloadIterator::current().
        $payload = $payloads->current();
    } catch (\eBayEnterprise\RetailOrderManagement\Payload\Exception\Payload $e) {
        // While iterating through the payloads, a Payload exception may be
        // thrown and cause the premature end of the loop unless caught.

        print $e->getMessage();
    }
    // advance the internal pointer to the next payload
    $payloads->next();
}

Tests

Using Docker

A fig file is included to automate creating and coordinating Docker containers to install and run tests., (*15)

To install and run tests using Fig:, (*16)

# setup and install
fig run --rm setup
fig run --rm composer install
# run tests
fig run --rm phpunit

See fig.yml for additional commands for automated tests and static analysis., (*17)

See Docker and Fig for additional installation and usage information., (*18)

Local with Composer

After composer has installed all dependencies, tests can be run from the SDK's root directory., (*19)

vendor/bin/phpunit
vendor/bin/phpmd src text phpmd.xml
vendor/bin/phpcs --standard=psr2 src

The Versions

12/01 2017

dev-master

9999999-dev

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

12/01 2017

1.5.39

1.5.39.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

12/01 2017

1.5.38

1.5.38.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

11/11 2016

1.5.37

1.5.37.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

02/11 2016

1.5.36

1.5.36.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

22/09 2016

1.5.35

1.5.35.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

22/09 2016

1.5.34

1.5.34.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

21/09 2016

1.5.33

1.5.33.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

06/09 2016

1.5.32

1.5.32.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

05/09 2016

1.5.31

1.5.31.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

04/09 2016

1.5.30

1.5.30.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

04/09 2016

1.5.29

1.5.29.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

04/09 2016

1.5.28

1.5.28.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

02/09 2016

1.5.27

1.5.27.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

16/08 2016

1.5.26

1.5.26.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

15/08 2016

1.5.25

1.5.25.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

15/08 2016

1.5.24

1.5.24.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

15/08 2016

1.5.23

1.5.23.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

15/08 2016

1.5.22

1.5.22.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

15/08 2016

1.5.21

1.5.21.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

15/08 2016

1.5.20

1.5.20.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

15/08 2016

1.5.19

1.5.19.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

05/08 2016

1.5.18

1.5.18.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

05/08 2016

1.5.17

1.5.17.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

04/08 2016

1.5.16

1.5.16.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

04/08 2016

1.5.15

1.5.15.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

03/08 2016

1.5.14

1.5.14.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

11/07 2016

1.5.12

1.5.12.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

11/07 2016

1.5.13

1.5.13.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

06/07 2016

1.5.11

1.5.11.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

28/06 2016

1.5.10

1.5.10.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

21/06 2016

1.5.9

1.5.9.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

20/06 2016

1.5.8

1.5.8.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

03/06 2016

1.5.7

1.5.7.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

03/06 2016

1.5.6

1.5.6.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

02/06 2016

1.5.5

1.5.5.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

25/05 2016

1.5.4

1.5.4.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

24/05 2016

1.5.3

1.5.3.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

24/05 2016

1.5.2

1.5.2.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

10/05 2016

1.5.1

1.5.1.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

06/05 2016

1.5.0

1.5.0.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

20/02 2016

1.4.8

1.4.8.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

20/01 2016

1.4.7

1.4.7.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

12/01 2016

1.4.6

1.4.6.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

11/01 2016

1.4.5

1.4.5.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

07/01 2016

1.4.4

1.4.4.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

09/12 2015

1.4.3

1.4.3.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

25/11 2015

1.4.2

1.4.2.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Ryan Tulino
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

17/11 2015

1.4.1

1.4.1.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

05/11 2015

1.4.0

1.4.0.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

21/10 2015

1.3.8

1.3.8.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

21/10 2015

1.3.7

1.3.7.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

14/10 2015

1.3.6

1.3.6.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

06/10 2015

1.3.5

1.3.5.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

30/09 2015

1.3.4

1.3.4.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

30/09 2015

1.3.3

1.3.3.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

10/08 2015

1.3.2

1.3.2.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

30/07 2015

1.3.1

1.3.1.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

16/07 2015

1.3.0

1.3.0.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

02/07 2015

1.2.1

1.2.1.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

18/06 2015

1.2.0

1.2.0.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

04/06 2015

1.2.0-alpha-3

1.2.0.0-alpha3

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

20/05 2015

1.2.0-alpha-2

1.2.0.0-alpha2

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

08/05 2015

1.2.0-alpha-1

1.2.0.0-alpha1

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

09/04 2015

1.1.0-beta-1

1.1.0.0-beta1

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

09/04 2015

1.0.2

1.0.2.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

27/03 2015

1.1.0-alpha-4

1.1.0.0-alpha4

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

26/02 2015

1.1.0-alpha-3

1.1.0.0-alpha3

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

13/02 2015

1.1.0-alpha-2

1.1.0.0-alpha2

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

28/01 2015

1.0.1

1.0.1.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

28/01 2015

1.1.0-alpha-1

1.1.0.0-alpha1

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer

14/01 2015

1.0.0

1.0.0.0

Software Development Kit for working with the Retail Order Management Web API

  Sources   Download

OSL-3.0

The Requires

 

The Development Requires

by Michael A. Smith
by Scott van Brug
by Michael Phang
by Mike West
by Reginald Gabriel
by Chris Kemmerer