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
Now use npm to resolve all dependencies by running the following command in the root directory (of the SDK folder):
npm install
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.
The following section explains how to use the library in a new project.
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
.
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.
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.
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
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:
- Navigate to the root directory of the SDK folder from command prompt.
- Type
mocha --recursive
to run all the tests.
- Navigate to the
../test/Controllers/
directory from command prompt. - Type
mocha *
to run all the tests.
- Navigate to the
../test/Controllers/
directory from command prompt. - 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 inTestBootstrap.js
.
API client can be initialized as following:
const lib = require('lib');
The singleton instance of the AWSECommerceServiceBindingController
class can be accessed from the API Client.
var controller = lib.AWSECommerceServiceBindingController;
Tags:
Skips Authentication
TODO: Add a method description
function createItemSearch(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new ItemSearchRequestMsg({"key":"value"});
controller.createItemSearch(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createItemLookup(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new ItemLookupRequestMsg({"key":"value"});
controller.createItemLookup(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createBrowseNodeLookup(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new BrowseNodeLookupRequestMsg({"key":"value"});
controller.createBrowseNodeLookup(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createSimilarityLookup(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new SimilarityLookupRequestMsg({"key":"value"});
controller.createSimilarityLookup(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartGet(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartGetRequestMsg({"key":"value"});
controller.createCartGet(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartAdd(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartAddRequestMsg({"key":"value"});
controller.createCartAdd(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartCreate(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartCreateRequestMsg({"key":"value"});
controller.createCartCreate(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartModify(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartModifyRequestMsg({"key":"value"});
controller.createCartModify(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartClear(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartClearRequestMsg({"key":"value"});
controller.createCartClear(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createItemSearch9(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new ItemSearchRequestMsg({"key":"value"});
controller.createItemSearch9(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createItemLookup10(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new ItemLookupRequestMsg({"key":"value"});
controller.createItemLookup10(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createBrowseNodeLookup11(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new BrowseNodeLookupRequestMsg({"key":"value"});
controller.createBrowseNodeLookup11(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createSimilarityLookup12(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new SimilarityLookupRequestMsg({"key":"value"});
controller.createSimilarityLookup12(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartGet13(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartGetRequestMsg({"key":"value"});
controller.createCartGet13(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartAdd14(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartAddRequestMsg({"key":"value"});
controller.createCartAdd14(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartCreate15(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartCreateRequestMsg({"key":"value"});
controller.createCartCreate15(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartModify16(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartModifyRequestMsg({"key":"value"});
controller.createCartModify16(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartClear17(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartClearRequestMsg({"key":"value"});
controller.createCartClear17(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createItemSearch18(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new ItemSearchRequestMsg({"key":"value"});
controller.createItemSearch18(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createItemLookup19(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new ItemLookupRequestMsg({"key":"value"});
controller.createItemLookup19(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createBrowseNodeLookup20(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new BrowseNodeLookupRequestMsg({"key":"value"});
controller.createBrowseNodeLookup20(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createSimilarityLookup21(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new SimilarityLookupRequestMsg({"key":"value"});
controller.createSimilarityLookup21(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartGet22(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartGetRequestMsg({"key":"value"});
controller.createCartGet22(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartAdd23(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartAddRequestMsg({"key":"value"});
controller.createCartAdd23(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartCreate24(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartCreateRequestMsg({"key":"value"});
controller.createCartCreate24(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartModify25(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartModifyRequestMsg({"key":"value"});
controller.createCartModify25(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartClear26(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartClearRequestMsg({"key":"value"});
controller.createCartClear26(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createItemSearch27(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new ItemSearchRequestMsg({"key":"value"});
controller.createItemSearch27(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createItemLookup28(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new ItemLookupRequestMsg({"key":"value"});
controller.createItemLookup28(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createBrowseNodeLookup29(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new BrowseNodeLookupRequestMsg({"key":"value"});
controller.createBrowseNodeLookup29(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createSimilarityLookup30(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new SimilarityLookupRequestMsg({"key":"value"});
controller.createSimilarityLookup30(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartGet31(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartGetRequestMsg({"key":"value"});
controller.createCartGet31(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartAdd32(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartAddRequestMsg({"key":"value"});
controller.createCartAdd32(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartCreate33(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartCreateRequestMsg({"key":"value"});
controller.createCartCreate33(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartModify34(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartModifyRequestMsg({"key":"value"});
controller.createCartModify34(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartClear35(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartClearRequestMsg({"key":"value"});
controller.createCartClear35(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createItemSearch36(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new ItemSearchRequestMsg({"key":"value"});
controller.createItemSearch36(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createItemLookup37(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new ItemLookupRequestMsg({"key":"value"});
controller.createItemLookup37(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createBrowseNodeLookup38(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new BrowseNodeLookupRequestMsg({"key":"value"});
controller.createBrowseNodeLookup38(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createSimilarityLookup39(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new SimilarityLookupRequestMsg({"key":"value"});
controller.createSimilarityLookup39(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartGet40(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartGetRequestMsg({"key":"value"});
controller.createCartGet40(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartAdd41(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartAddRequestMsg({"key":"value"});
controller.createCartAdd41(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartCreate42(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartCreateRequestMsg({"key":"value"});
controller.createCartCreate42(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartModify43(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartModifyRequestMsg({"key":"value"});
controller.createCartModify43(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartClear44(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartClearRequestMsg({"key":"value"});
controller.createCartClear44(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createItemSearch45(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new ItemSearchRequestMsg({"key":"value"});
controller.createItemSearch45(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createItemLookup46(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new ItemLookupRequestMsg({"key":"value"});
controller.createItemLookup46(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createBrowseNodeLookup47(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new BrowseNodeLookupRequestMsg({"key":"value"});
controller.createBrowseNodeLookup47(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createSimilarityLookup48(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new SimilarityLookupRequestMsg({"key":"value"});
controller.createSimilarityLookup48(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartGet49(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartGetRequestMsg({"key":"value"});
controller.createCartGet49(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartAdd50(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartAddRequestMsg({"key":"value"});
controller.createCartAdd50(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartCreate51(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartCreateRequestMsg({"key":"value"});
controller.createCartCreate51(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartModify52(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartModifyRequestMsg({"key":"value"});
controller.createCartModify52(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartClear53(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartClearRequestMsg({"key":"value"});
controller.createCartClear53(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createItemSearch54(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new ItemSearchRequestMsg({"key":"value"});
controller.createItemSearch54(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createItemLookup55(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new ItemLookupRequestMsg({"key":"value"});
controller.createItemLookup55(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createBrowseNodeLookup56(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new BrowseNodeLookupRequestMsg({"key":"value"});
controller.createBrowseNodeLookup56(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createSimilarityLookup57(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new SimilarityLookupRequestMsg({"key":"value"});
controller.createSimilarityLookup57(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartGet58(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartGetRequestMsg({"key":"value"});
controller.createCartGet58(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartAdd59(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartAddRequestMsg({"key":"value"});
controller.createCartAdd59(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartCreate60(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartCreateRequestMsg({"key":"value"});
controller.createCartCreate60(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartModify61(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartModifyRequestMsg({"key":"value"});
controller.createCartModify61(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartClear62(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartClearRequestMsg({"key":"value"});
controller.createCartClear62(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createItemSearch63(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new ItemSearchRequestMsg({"key":"value"});
controller.createItemSearch63(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createItemLookup64(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new ItemLookupRequestMsg({"key":"value"});
controller.createItemLookup64(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createBrowseNodeLookup65(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new BrowseNodeLookupRequestMsg({"key":"value"});
controller.createBrowseNodeLookup65(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createSimilarityLookup66(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new SimilarityLookupRequestMsg({"key":"value"});
controller.createSimilarityLookup66(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartGet67(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartGetRequestMsg({"key":"value"});
controller.createCartGet67(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartAdd68(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartAddRequestMsg({"key":"value"});
controller.createCartAdd68(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartCreate69(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartCreateRequestMsg({"key":"value"});
controller.createCartCreate69(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartModify70(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartModifyRequestMsg({"key":"value"});
controller.createCartModify70(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartClear71(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartClearRequestMsg({"key":"value"});
controller.createCartClear71(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createItemSearch72(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new ItemSearchRequestMsg({"key":"value"});
controller.createItemSearch72(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createItemLookup73(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new ItemLookupRequestMsg({"key":"value"});
controller.createItemLookup73(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createBrowseNodeLookup74(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new BrowseNodeLookupRequestMsg({"key":"value"});
controller.createBrowseNodeLookup74(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createSimilarityLookup75(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new SimilarityLookupRequestMsg({"key":"value"});
controller.createSimilarityLookup75(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartGet76(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartGetRequestMsg({"key":"value"});
controller.createCartGet76(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartAdd77(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartAddRequestMsg({"key":"value"});
controller.createCartAdd77(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartCreate78(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartCreateRequestMsg({"key":"value"});
controller.createCartCreate78(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartModify79(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartModifyRequestMsg({"key":"value"});
controller.createCartModify79(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartClear80(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartClearRequestMsg({"key":"value"});
controller.createCartClear80(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createItemSearch81(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new ItemSearchRequestMsg({"key":"value"});
controller.createItemSearch81(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createItemLookup82(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new ItemLookupRequestMsg({"key":"value"});
controller.createItemLookup82(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createBrowseNodeLookup83(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new BrowseNodeLookupRequestMsg({"key":"value"});
controller.createBrowseNodeLookup83(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createSimilarityLookup84(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new SimilarityLookupRequestMsg({"key":"value"});
controller.createSimilarityLookup84(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartGet85(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartGetRequestMsg({"key":"value"});
controller.createCartGet85(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartAdd86(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartAddRequestMsg({"key":"value"});
controller.createCartAdd86(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartCreate87(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartCreateRequestMsg({"key":"value"});
controller.createCartCreate87(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartModify88(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartModifyRequestMsg({"key":"value"});
controller.createCartModify88(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartClear89(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartClearRequestMsg({"key":"value"});
controller.createCartClear89(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createItemSearch90(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new ItemSearchRequestMsg({"key":"value"});
controller.createItemSearch90(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createItemLookup91(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new ItemLookupRequestMsg({"key":"value"});
controller.createItemLookup91(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createBrowseNodeLookup92(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new BrowseNodeLookupRequestMsg({"key":"value"});
controller.createBrowseNodeLookup92(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createSimilarityLookup93(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new SimilarityLookupRequestMsg({"key":"value"});
controller.createSimilarityLookup93(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartGet94(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartGetRequestMsg({"key":"value"});
controller.createCartGet94(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartAdd95(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartAddRequestMsg({"key":"value"});
controller.createCartAdd95(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartCreate96(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartCreateRequestMsg({"key":"value"});
controller.createCartCreate96(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartModify97(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartModifyRequestMsg({"key":"value"});
controller.createCartModify97(body, function(error, response, context) {
});
Tags:
Skips Authentication
TODO: Add a method description
function createCartClear98(body, callback)
Parameter | Tags | Description |
---|---|---|
body | Required |
TODO: Add a parameter description |
var body = new CartClearRequestMsg({"key":"value"});
controller.createCartClear98(body, function(error, response, context) {
});