45.25.65 • Published 6 years ago

amazon-car-api-sdk-for-beginners v45.25.65

Weekly downloads
4
License
-
Repository
-
Last release
6 years ago

Getting started

How to Build

The generated SDK relies on Node Package Manager (NPM) being available to resolve dependencies. If you don't already have NPM installed, please go ahead and follow instructions to install NPM from here. The SDK also requires Node to be installed. If Node isn't already installed, please install it from here

NPM is installed by default when Node is installed

To check if node and npm have been successfully installed, write the following commands in command prompt:

  • node --version
  • npm -version

Version Check

Now use npm to resolve all dependencies by running the following command in the root directory (of the SDK folder):

npm install

Resolve Dependencies

Resolve Dependencies

This will install all dependencies in the node_modules folder.

Once dependencies are resolved, you will need to move the folder AWSECommerceServiceLib in to your node_modules folder.

How to Use

The following section explains how to use the library in a new project.

1. Open Project Folder

Open an IDE/Text Editor for JavaScript like Sublime Text. The basic workflow presented here is also applicable if you prefer using a different editor or IDE.

Click on File and select Open Folder.

Open Folder

Select the folder of your SDK and click on Select Folder to open it up in Sublime Text. The folder will become visible in the bar on the left.

Open Project

2. Creating a Test File

Now right click on the folder name and select the New File option to create a new test file. Save it as index.js Now import the generated NodeJS library using the following lines of code:

var lib = require('lib');

Save changes.

Create new file

Save new file

3. Running The Test File

To run the index.js file, open up the command prompt and navigate to the Path where the SDK folder resides. Type the following command to run the file:

node index.js

Run file

How to Test

These tests use Mocha framework for testing, coupled with Chai for assertions. These dependencies need to be installed for tests to run. Tests can be run in a number of ways:

Method 1 (Run all tests)

  1. Navigate to the root directory of the SDK folder from command prompt.
  2. Type mocha --recursive to run all the tests.

Method 2 (Run all tests)

  1. Navigate to the ../test/Controllers/ directory from command prompt.
  2. Type mocha * to run all the tests.

Method 3 (Run specific controller's tests)

  1. Navigate to the ../test/Controllers/ directory from command prompt.
  2. Type mocha AWSECommerceServiceController to run all the tests in that controller file.

To increase mocha's default timeout, you can change the TEST_TIMEOUT parameter's value in TestBootstrap.js.

Run Tests

Initialization

API client can be initialized as following:

const lib = require('lib');

Class Reference

List of Controllers

Class: AWSECommerceServiceBindingController

Get singleton instance

The singleton instance of the AWSECommerceServiceBindingController class can be accessed from the API Client.

var controller = lib.AWSECommerceServiceBindingController;

Method: createItemSearch

Tags: Skips Authentication

TODO: Add a method description

function createItemSearch(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new ItemSearchRequestMsg({"key":"value"});

    controller.createItemSearch(body, function(error, response, context) {

    
    });

Method: createItemLookup

Tags: Skips Authentication

TODO: Add a method description

function createItemLookup(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new ItemLookupRequestMsg({"key":"value"});

    controller.createItemLookup(body, function(error, response, context) {

    
    });

Method: createBrowseNodeLookup

Tags: Skips Authentication

TODO: Add a method description

function createBrowseNodeLookup(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new BrowseNodeLookupRequestMsg({"key":"value"});

    controller.createBrowseNodeLookup(body, function(error, response, context) {

    
    });

Method: createSimilarityLookup

Tags: Skips Authentication

TODO: Add a method description

function createSimilarityLookup(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new SimilarityLookupRequestMsg({"key":"value"});

    controller.createSimilarityLookup(body, function(error, response, context) {

    
    });

Method: createCartGet

Tags: Skips Authentication

TODO: Add a method description

function createCartGet(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartGetRequestMsg({"key":"value"});

    controller.createCartGet(body, function(error, response, context) {

    
    });

Method: createCartAdd

Tags: Skips Authentication

TODO: Add a method description

function createCartAdd(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartAddRequestMsg({"key":"value"});

    controller.createCartAdd(body, function(error, response, context) {

    
    });

Method: createCartCreate

Tags: Skips Authentication

TODO: Add a method description

function createCartCreate(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartCreateRequestMsg({"key":"value"});

    controller.createCartCreate(body, function(error, response, context) {

    
    });

Method: createCartModify

Tags: Skips Authentication

TODO: Add a method description

function createCartModify(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartModifyRequestMsg({"key":"value"});

    controller.createCartModify(body, function(error, response, context) {

    
    });

Method: createCartClear

Tags: Skips Authentication

TODO: Add a method description

function createCartClear(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartClearRequestMsg({"key":"value"});

    controller.createCartClear(body, function(error, response, context) {

    
    });

Method: createItemSearch9

Tags: Skips Authentication

TODO: Add a method description

function createItemSearch9(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new ItemSearchRequestMsg({"key":"value"});

    controller.createItemSearch9(body, function(error, response, context) {

    
    });

Method: createItemLookup10

Tags: Skips Authentication

TODO: Add a method description

function createItemLookup10(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new ItemLookupRequestMsg({"key":"value"});

    controller.createItemLookup10(body, function(error, response, context) {

    
    });

Method: createBrowseNodeLookup11

Tags: Skips Authentication

TODO: Add a method description

function createBrowseNodeLookup11(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new BrowseNodeLookupRequestMsg({"key":"value"});

    controller.createBrowseNodeLookup11(body, function(error, response, context) {

    
    });

Method: createSimilarityLookup12

Tags: Skips Authentication

TODO: Add a method description

function createSimilarityLookup12(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new SimilarityLookupRequestMsg({"key":"value"});

    controller.createSimilarityLookup12(body, function(error, response, context) {

    
    });

Method: createCartGet13

Tags: Skips Authentication

TODO: Add a method description

function createCartGet13(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartGetRequestMsg({"key":"value"});

    controller.createCartGet13(body, function(error, response, context) {

    
    });

Method: createCartAdd14

Tags: Skips Authentication

TODO: Add a method description

function createCartAdd14(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartAddRequestMsg({"key":"value"});

    controller.createCartAdd14(body, function(error, response, context) {

    
    });

Method: createCartCreate15

Tags: Skips Authentication

TODO: Add a method description

function createCartCreate15(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartCreateRequestMsg({"key":"value"});

    controller.createCartCreate15(body, function(error, response, context) {

    
    });

Method: createCartModify16

Tags: Skips Authentication

TODO: Add a method description

function createCartModify16(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartModifyRequestMsg({"key":"value"});

    controller.createCartModify16(body, function(error, response, context) {

    
    });

Method: createCartClear17

Tags: Skips Authentication

TODO: Add a method description

function createCartClear17(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartClearRequestMsg({"key":"value"});

    controller.createCartClear17(body, function(error, response, context) {

    
    });

Method: createItemSearch18

Tags: Skips Authentication

TODO: Add a method description

function createItemSearch18(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new ItemSearchRequestMsg({"key":"value"});

    controller.createItemSearch18(body, function(error, response, context) {

    
    });

Method: createItemLookup19

Tags: Skips Authentication

TODO: Add a method description

function createItemLookup19(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new ItemLookupRequestMsg({"key":"value"});

    controller.createItemLookup19(body, function(error, response, context) {

    
    });

Method: createBrowseNodeLookup20

Tags: Skips Authentication

TODO: Add a method description

function createBrowseNodeLookup20(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new BrowseNodeLookupRequestMsg({"key":"value"});

    controller.createBrowseNodeLookup20(body, function(error, response, context) {

    
    });

Method: createSimilarityLookup21

Tags: Skips Authentication

TODO: Add a method description

function createSimilarityLookup21(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new SimilarityLookupRequestMsg({"key":"value"});

    controller.createSimilarityLookup21(body, function(error, response, context) {

    
    });

Method: createCartGet22

Tags: Skips Authentication

TODO: Add a method description

function createCartGet22(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartGetRequestMsg({"key":"value"});

    controller.createCartGet22(body, function(error, response, context) {

    
    });

Method: createCartAdd23

Tags: Skips Authentication

TODO: Add a method description

function createCartAdd23(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartAddRequestMsg({"key":"value"});

    controller.createCartAdd23(body, function(error, response, context) {

    
    });

Method: createCartCreate24

Tags: Skips Authentication

TODO: Add a method description

function createCartCreate24(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartCreateRequestMsg({"key":"value"});

    controller.createCartCreate24(body, function(error, response, context) {

    
    });

Method: createCartModify25

Tags: Skips Authentication

TODO: Add a method description

function createCartModify25(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartModifyRequestMsg({"key":"value"});

    controller.createCartModify25(body, function(error, response, context) {

    
    });

Method: createCartClear26

Tags: Skips Authentication

TODO: Add a method description

function createCartClear26(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartClearRequestMsg({"key":"value"});

    controller.createCartClear26(body, function(error, response, context) {

    
    });

Method: createItemSearch27

Tags: Skips Authentication

TODO: Add a method description

function createItemSearch27(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new ItemSearchRequestMsg({"key":"value"});

    controller.createItemSearch27(body, function(error, response, context) {

    
    });

Method: createItemLookup28

Tags: Skips Authentication

TODO: Add a method description

function createItemLookup28(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new ItemLookupRequestMsg({"key":"value"});

    controller.createItemLookup28(body, function(error, response, context) {

    
    });

Method: createBrowseNodeLookup29

Tags: Skips Authentication

TODO: Add a method description

function createBrowseNodeLookup29(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new BrowseNodeLookupRequestMsg({"key":"value"});

    controller.createBrowseNodeLookup29(body, function(error, response, context) {

    
    });

Method: createSimilarityLookup30

Tags: Skips Authentication

TODO: Add a method description

function createSimilarityLookup30(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new SimilarityLookupRequestMsg({"key":"value"});

    controller.createSimilarityLookup30(body, function(error, response, context) {

    
    });

Method: createCartGet31

Tags: Skips Authentication

TODO: Add a method description

function createCartGet31(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartGetRequestMsg({"key":"value"});

    controller.createCartGet31(body, function(error, response, context) {

    
    });

Method: createCartAdd32

Tags: Skips Authentication

TODO: Add a method description

function createCartAdd32(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartAddRequestMsg({"key":"value"});

    controller.createCartAdd32(body, function(error, response, context) {

    
    });

Method: createCartCreate33

Tags: Skips Authentication

TODO: Add a method description

function createCartCreate33(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartCreateRequestMsg({"key":"value"});

    controller.createCartCreate33(body, function(error, response, context) {

    
    });

Method: createCartModify34

Tags: Skips Authentication

TODO: Add a method description

function createCartModify34(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartModifyRequestMsg({"key":"value"});

    controller.createCartModify34(body, function(error, response, context) {

    
    });

Method: createCartClear35

Tags: Skips Authentication

TODO: Add a method description

function createCartClear35(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartClearRequestMsg({"key":"value"});

    controller.createCartClear35(body, function(error, response, context) {

    
    });

Method: createItemSearch36

Tags: Skips Authentication

TODO: Add a method description

function createItemSearch36(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new ItemSearchRequestMsg({"key":"value"});

    controller.createItemSearch36(body, function(error, response, context) {

    
    });

Method: createItemLookup37

Tags: Skips Authentication

TODO: Add a method description

function createItemLookup37(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new ItemLookupRequestMsg({"key":"value"});

    controller.createItemLookup37(body, function(error, response, context) {

    
    });

Method: createBrowseNodeLookup38

Tags: Skips Authentication

TODO: Add a method description

function createBrowseNodeLookup38(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new BrowseNodeLookupRequestMsg({"key":"value"});

    controller.createBrowseNodeLookup38(body, function(error, response, context) {

    
    });

Method: createSimilarityLookup39

Tags: Skips Authentication

TODO: Add a method description

function createSimilarityLookup39(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new SimilarityLookupRequestMsg({"key":"value"});

    controller.createSimilarityLookup39(body, function(error, response, context) {

    
    });

Method: createCartGet40

Tags: Skips Authentication

TODO: Add a method description

function createCartGet40(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartGetRequestMsg({"key":"value"});

    controller.createCartGet40(body, function(error, response, context) {

    
    });

Method: createCartAdd41

Tags: Skips Authentication

TODO: Add a method description

function createCartAdd41(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartAddRequestMsg({"key":"value"});

    controller.createCartAdd41(body, function(error, response, context) {

    
    });

Method: createCartCreate42

Tags: Skips Authentication

TODO: Add a method description

function createCartCreate42(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartCreateRequestMsg({"key":"value"});

    controller.createCartCreate42(body, function(error, response, context) {

    
    });

Method: createCartModify43

Tags: Skips Authentication

TODO: Add a method description

function createCartModify43(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartModifyRequestMsg({"key":"value"});

    controller.createCartModify43(body, function(error, response, context) {

    
    });

Method: createCartClear44

Tags: Skips Authentication

TODO: Add a method description

function createCartClear44(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartClearRequestMsg({"key":"value"});

    controller.createCartClear44(body, function(error, response, context) {

    
    });

Method: createItemSearch45

Tags: Skips Authentication

TODO: Add a method description

function createItemSearch45(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new ItemSearchRequestMsg({"key":"value"});

    controller.createItemSearch45(body, function(error, response, context) {

    
    });

Method: createItemLookup46

Tags: Skips Authentication

TODO: Add a method description

function createItemLookup46(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new ItemLookupRequestMsg({"key":"value"});

    controller.createItemLookup46(body, function(error, response, context) {

    
    });

Method: createBrowseNodeLookup47

Tags: Skips Authentication

TODO: Add a method description

function createBrowseNodeLookup47(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new BrowseNodeLookupRequestMsg({"key":"value"});

    controller.createBrowseNodeLookup47(body, function(error, response, context) {

    
    });

Method: createSimilarityLookup48

Tags: Skips Authentication

TODO: Add a method description

function createSimilarityLookup48(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new SimilarityLookupRequestMsg({"key":"value"});

    controller.createSimilarityLookup48(body, function(error, response, context) {

    
    });

Method: createCartGet49

Tags: Skips Authentication

TODO: Add a method description

function createCartGet49(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartGetRequestMsg({"key":"value"});

    controller.createCartGet49(body, function(error, response, context) {

    
    });

Method: createCartAdd50

Tags: Skips Authentication

TODO: Add a method description

function createCartAdd50(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartAddRequestMsg({"key":"value"});

    controller.createCartAdd50(body, function(error, response, context) {

    
    });

Method: createCartCreate51

Tags: Skips Authentication

TODO: Add a method description

function createCartCreate51(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartCreateRequestMsg({"key":"value"});

    controller.createCartCreate51(body, function(error, response, context) {

    
    });

Method: createCartModify52

Tags: Skips Authentication

TODO: Add a method description

function createCartModify52(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartModifyRequestMsg({"key":"value"});

    controller.createCartModify52(body, function(error, response, context) {

    
    });

Method: createCartClear53

Tags: Skips Authentication

TODO: Add a method description

function createCartClear53(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartClearRequestMsg({"key":"value"});

    controller.createCartClear53(body, function(error, response, context) {

    
    });

Method: createItemSearch54

Tags: Skips Authentication

TODO: Add a method description

function createItemSearch54(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new ItemSearchRequestMsg({"key":"value"});

    controller.createItemSearch54(body, function(error, response, context) {

    
    });

Method: createItemLookup55

Tags: Skips Authentication

TODO: Add a method description

function createItemLookup55(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new ItemLookupRequestMsg({"key":"value"});

    controller.createItemLookup55(body, function(error, response, context) {

    
    });

Method: createBrowseNodeLookup56

Tags: Skips Authentication

TODO: Add a method description

function createBrowseNodeLookup56(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new BrowseNodeLookupRequestMsg({"key":"value"});

    controller.createBrowseNodeLookup56(body, function(error, response, context) {

    
    });

Method: createSimilarityLookup57

Tags: Skips Authentication

TODO: Add a method description

function createSimilarityLookup57(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new SimilarityLookupRequestMsg({"key":"value"});

    controller.createSimilarityLookup57(body, function(error, response, context) {

    
    });

Method: createCartGet58

Tags: Skips Authentication

TODO: Add a method description

function createCartGet58(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartGetRequestMsg({"key":"value"});

    controller.createCartGet58(body, function(error, response, context) {

    
    });

Method: createCartAdd59

Tags: Skips Authentication

TODO: Add a method description

function createCartAdd59(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartAddRequestMsg({"key":"value"});

    controller.createCartAdd59(body, function(error, response, context) {

    
    });

Method: createCartCreate60

Tags: Skips Authentication

TODO: Add a method description

function createCartCreate60(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartCreateRequestMsg({"key":"value"});

    controller.createCartCreate60(body, function(error, response, context) {

    
    });

Method: createCartModify61

Tags: Skips Authentication

TODO: Add a method description

function createCartModify61(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartModifyRequestMsg({"key":"value"});

    controller.createCartModify61(body, function(error, response, context) {

    
    });

Method: createCartClear62

Tags: Skips Authentication

TODO: Add a method description

function createCartClear62(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartClearRequestMsg({"key":"value"});

    controller.createCartClear62(body, function(error, response, context) {

    
    });

Method: createItemSearch63

Tags: Skips Authentication

TODO: Add a method description

function createItemSearch63(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new ItemSearchRequestMsg({"key":"value"});

    controller.createItemSearch63(body, function(error, response, context) {

    
    });

Method: createItemLookup64

Tags: Skips Authentication

TODO: Add a method description

function createItemLookup64(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new ItemLookupRequestMsg({"key":"value"});

    controller.createItemLookup64(body, function(error, response, context) {

    
    });

Method: createBrowseNodeLookup65

Tags: Skips Authentication

TODO: Add a method description

function createBrowseNodeLookup65(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new BrowseNodeLookupRequestMsg({"key":"value"});

    controller.createBrowseNodeLookup65(body, function(error, response, context) {

    
    });

Method: createSimilarityLookup66

Tags: Skips Authentication

TODO: Add a method description

function createSimilarityLookup66(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new SimilarityLookupRequestMsg({"key":"value"});

    controller.createSimilarityLookup66(body, function(error, response, context) {

    
    });

Method: createCartGet67

Tags: Skips Authentication

TODO: Add a method description

function createCartGet67(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartGetRequestMsg({"key":"value"});

    controller.createCartGet67(body, function(error, response, context) {

    
    });

Method: createCartAdd68

Tags: Skips Authentication

TODO: Add a method description

function createCartAdd68(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartAddRequestMsg({"key":"value"});

    controller.createCartAdd68(body, function(error, response, context) {

    
    });

Method: createCartCreate69

Tags: Skips Authentication

TODO: Add a method description

function createCartCreate69(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartCreateRequestMsg({"key":"value"});

    controller.createCartCreate69(body, function(error, response, context) {

    
    });

Method: createCartModify70

Tags: Skips Authentication

TODO: Add a method description

function createCartModify70(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartModifyRequestMsg({"key":"value"});

    controller.createCartModify70(body, function(error, response, context) {

    
    });

Method: createCartClear71

Tags: Skips Authentication

TODO: Add a method description

function createCartClear71(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartClearRequestMsg({"key":"value"});

    controller.createCartClear71(body, function(error, response, context) {

    
    });

Method: createItemSearch72

Tags: Skips Authentication

TODO: Add a method description

function createItemSearch72(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new ItemSearchRequestMsg({"key":"value"});

    controller.createItemSearch72(body, function(error, response, context) {

    
    });

Method: createItemLookup73

Tags: Skips Authentication

TODO: Add a method description

function createItemLookup73(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new ItemLookupRequestMsg({"key":"value"});

    controller.createItemLookup73(body, function(error, response, context) {

    
    });

Method: createBrowseNodeLookup74

Tags: Skips Authentication

TODO: Add a method description

function createBrowseNodeLookup74(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new BrowseNodeLookupRequestMsg({"key":"value"});

    controller.createBrowseNodeLookup74(body, function(error, response, context) {

    
    });

Method: createSimilarityLookup75

Tags: Skips Authentication

TODO: Add a method description

function createSimilarityLookup75(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new SimilarityLookupRequestMsg({"key":"value"});

    controller.createSimilarityLookup75(body, function(error, response, context) {

    
    });

Method: createCartGet76

Tags: Skips Authentication

TODO: Add a method description

function createCartGet76(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartGetRequestMsg({"key":"value"});

    controller.createCartGet76(body, function(error, response, context) {

    
    });

Method: createCartAdd77

Tags: Skips Authentication

TODO: Add a method description

function createCartAdd77(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartAddRequestMsg({"key":"value"});

    controller.createCartAdd77(body, function(error, response, context) {

    
    });

Method: createCartCreate78

Tags: Skips Authentication

TODO: Add a method description

function createCartCreate78(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartCreateRequestMsg({"key":"value"});

    controller.createCartCreate78(body, function(error, response, context) {

    
    });

Method: createCartModify79

Tags: Skips Authentication

TODO: Add a method description

function createCartModify79(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartModifyRequestMsg({"key":"value"});

    controller.createCartModify79(body, function(error, response, context) {

    
    });

Method: createCartClear80

Tags: Skips Authentication

TODO: Add a method description

function createCartClear80(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartClearRequestMsg({"key":"value"});

    controller.createCartClear80(body, function(error, response, context) {

    
    });

Method: createItemSearch81

Tags: Skips Authentication

TODO: Add a method description

function createItemSearch81(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new ItemSearchRequestMsg({"key":"value"});

    controller.createItemSearch81(body, function(error, response, context) {

    
    });

Method: createItemLookup82

Tags: Skips Authentication

TODO: Add a method description

function createItemLookup82(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new ItemLookupRequestMsg({"key":"value"});

    controller.createItemLookup82(body, function(error, response, context) {

    
    });

Method: createBrowseNodeLookup83

Tags: Skips Authentication

TODO: Add a method description

function createBrowseNodeLookup83(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new BrowseNodeLookupRequestMsg({"key":"value"});

    controller.createBrowseNodeLookup83(body, function(error, response, context) {

    
    });

Method: createSimilarityLookup84

Tags: Skips Authentication

TODO: Add a method description

function createSimilarityLookup84(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new SimilarityLookupRequestMsg({"key":"value"});

    controller.createSimilarityLookup84(body, function(error, response, context) {

    
    });

Method: createCartGet85

Tags: Skips Authentication

TODO: Add a method description

function createCartGet85(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartGetRequestMsg({"key":"value"});

    controller.createCartGet85(body, function(error, response, context) {

    
    });

Method: createCartAdd86

Tags: Skips Authentication

TODO: Add a method description

function createCartAdd86(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartAddRequestMsg({"key":"value"});

    controller.createCartAdd86(body, function(error, response, context) {

    
    });

Method: createCartCreate87

Tags: Skips Authentication

TODO: Add a method description

function createCartCreate87(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartCreateRequestMsg({"key":"value"});

    controller.createCartCreate87(body, function(error, response, context) {

    
    });

Method: createCartModify88

Tags: Skips Authentication

TODO: Add a method description

function createCartModify88(body, callback)

Parameters

ParameterTagsDescription
bodyRequiredTODO: Add a parameter description

Example Usage

    var body = new CartModifyRequestMsg({"key":"value"});

    controller