API Documentation. Public API Documentation Last Updated: 05/14/2012

Size: px
Start display at page:

Download "API Documentation. Public API Documentation Last Updated: 05/14/2012"

Transcription

1 API Documentation Summary... 3 Protocols... 3 Requirements... 3 First Time Authorization Sign Up Login Authenticate User Execute the API... 6 API Calls... 7 Operations... 7 Call Arguments and Filters... 8 Page Size... 8 Versioning... 8 Filters... 9 API Call Example Request Response Category Management ReadCategoryRequest Arguments ReadCategory Response ReadCategory Filters Customer Management ReadCustomer Arguments ReadCustomer ReadCustomer Filters Manufacturer Management Manufacturer Arguments ReadManufacturer ReadManufacturer Filters Order Management ReadOrder Arguments ReadOrder ReadOrder Filters UpdateOrder Arguments Order Status Management ReadOrderStatus Arguments ReadOrderStatus Read OrderStatus Filters Product Management ReadProduct Arguments ReadProduct ReadProduct Filters UpdateInventory Site Information Management of 29

2 ReadSiteSetting Arguments Warehouse Management ReadWarehouse ReadWarehouse ReadWarehouse Filters of 29

3 Summary This API document is a guide for developers who wish to use the Network Solutions Public API function to create applications that utilize their customer s online store, inventory, order, and customer data. Protocols The Network Solutions Public API can send and receive data utilizing either a soap or xml request. Requirements Listed below are the required items you must have to access and utilize the Public API A user created in the control panel for specific store that will use the API. This user must have full superadmin rights. A Network Solutions issued certificate which is a user key that is given out when the participating application has been approved by Network Solutions. First Time Authorization There are specific steps that must occur the first time you attempt to connect with the Public API. These steps are listed below. 1. Sign Up Register to our Public API by filling in the form with the appropriate information. It s important to enter a valid address since this is what we will use to provide you with a Certificate key. 3 of 29

4 2. Login Login to the API using; Your specific Application Name (entered in the form of the previous step) Public API Documentation Your Network Solutions Certificate (provided in the you received after submitting the form) Using the GetUserKey API function Call will return a Login URL and Userkey. The LoginURL is specific to the site that is accessing the API and the Userkey is specific to the session.the following examples show a sample of a GetUserKey request and response: Request: <soapenv:envelope xmlns:soapenv=" xmlns:urn="urn:networksolutions:apis"> <soapenv:header> <urn:securitycredential> <urn:application>myapplication</urn:application> <urn:certificate>e5fd d9b326012e483</urn:certificate> </urn:securitycredential> </soapenv:header> <soapenv:body> <urn:getuserkeyrequest/> </soapenv:body> </soapenv:envelope> Response: <soap:envelope xmlns:soap=" xmlns:xsi=" xmlns:xsd=" <soap:body> <GetUserKeyResponse xmlns="urn:networksolutions:apis"> <Status>Success</Status> <TimeStamp> T18:47: Z</TimeStamp> <UserKey> <LoginUrl> y=p27shwku39910t2v </LoginUrl> <UserKey> p27shwku39910t2v</userkey> </UserKey> </GetUserKeyResponse> </soap:body> </soap:envelope> 4 of 29

5 3. Authenticate User Once you have obtained the LoginURL and UserKey, the specific user must be identified. This is done by browsing to the URL provided in the previous step and filling in the form with the appropriate information: Store URL (entered in the form during Step 1) User Name (user with SuperAdmin or NS API Access roles) Password These three items will uniquely identify the user, the store and the current session. Once the user s permissions, the storefront and other data have been verified, the user will be redirected to a Success URL indicating that connection has been made with the API. NOTE: We recommend that you create a specific user with NS API Access role only. This role allows the user to perform any API interactions but all other control panel permissions are denied. 5 of 29

6 4. Execute the API Executing API calls require three pieces of information to identify, authenticate, and authorize the API call; Application; This string identifies the specific application that is making the API call. Certificate This string is a Network Solutions generated password associated with the specific application making the API call. User Token This string is a unique generated number that identifies the particular storefront and the specific user making the API call. Argument Type Required Meaning Application String Yes Specifies the application or developer making the Api call. Certificate String Yes A generated password associated with the application. UserToken String Conditional Identifies the storefront and user making the call. The UserToken identifies the storefront and user making the API call. The user must grant the application access to their data using the authorization page. The user must be a physical user within the storefront ecommerce application and have Super admin or NS API Access permissions. Once the user token has been verified and received, you may begin to use the Public API. 6 of 29

7 API Calls Public API Documentation The API offers the ubiquitous CRUD operations (Create, Read, Update, Delete) over most of the entities supported. You can always go to for an updated definition of operations, messages and types supported. Operations Currently, the types of API calls are limited to: CreateAttribute ReadProduct CreateCategory ReadSiteSetting CreateCustomer ReadWarehouse CreateGiftCertificate UpdateAttribute CreateManufacturer UpdateCategory CreateOrderStatus UpdateCustomer CreatePriceLevel UpdateGiftCertificate CreateProduct UpdateInventory CreateWarehouse UpdateManufacturer DeleteAttribute UpdateOrder DeleteCategory UpdateOrderStatus DeleteCustomer UpdatePriceLevel DeleteGiftCertificate UpdateProduct DeleteManufacturer UpdateWarehouse DeleteOrderStatus DeletePriceLevel DeleteProduct DeleteWarehouse GetUserKey GetUserToken PerformMultiple ReadAttribute ReadCategory ReadCustomer ReadGiftCertificate ReadManufacturer ReadOrder ReadOrderStatus 7 of 29

8 ReadPriceLevel Call Arguments and Filters Each API call contains its own supported parameters that can be used to organize the data being requested. Page Size Your API calls can be currently filtered using the following parameters; Example: DetailSize This argument will filter the information coming from the API and is restriced to Small, Medium, Large, and Custom. Check the specific API call below to see which data filters to which detail size. Page This argument identifies which page of data will be reported. This is modified by the Size argument. Size This argument modifies the page argument by expressing how many items will be called per page. If you wanted to retrieve the data from products 251 to 300, you might have an argument such as: <PageRequest> <Page>2</Page> <Size>250</Size> </PageRequest> Would return the second page of products, putting 250 products per page. Versioning The Public API supports versioning since version 7.7. This means that any breaking changes added will only be available for the new version being released. The following set of rules was applied to this new feature: If no version is provided, we will consider the request as targeted to the latest version. If a version is provided and: o Is lower than the minimum version we currently support (7.7), then we will default it to this minimum version. o Is higher than the current version, we will default to the latest version. Echoing: We echo the exact same version that was sent in the request as long as it is higher than the minimum we support (7.7), otherwise we don't echo any version in the response. We only support 2 digits versioning: x.y The following example shows how to make a call against the 7.8 API version: <ReadCategoryRequest xmlns="urn:networksolutions:apis"> <RequestId>ReadCategoryDetail</RequestId> <DetailSize>Large</DetailSize> <FilterList> <Field>CategoryId</Field> <ValueList>87</ValueList> <Operator>Equal</Operator> </FilterList> <Version>7.8</Version> </ReadCategoryRequest> 8 of 29

9 Filters We support executing query-style read requests by using specific operators and available fields. This is an extremely powerful feature that provides you with great flexibility to obtain the exact data you are looking for. To achieve this, you will only need to add FilterList elements to your read request, each of which should contain the corresponding criteria (Field + Operator + ValueList) to be used for the search. Specifying multiple FilterList elements will result in a logical AND concatenation of criterias; there is currently no support for nested logical operations. List of supported operators: Between Equal GreaterEqual GreaterThan In IsNull LessEqual LessThan Like NotEqual A list of available filter fields for each ReadRequest can be found under the specific api call documentation below in this document. The following example shows how to retrieve all products that have a quantity in stock between 5 and 10, are enabled and belong to the Regular product class: <?xml version="1.0" encoding="utf-8"?> <ReadProductRequest xmlns:xsi=" xmlns="urn:networksolutions:apis"> <DetailSize>Small</DetailSize> <FilterList> <Field>QtyInStock</Field> <Operator>Between</Operator> <ValueList>5</ValueList> <ValueList>10</ValueList> </FilterList> <FilterList> <Field>Enabled</Field> <Operator>Equal</Operator> <ValueList>True</ValueList> </FilterList> <FilterList> <Field>ProductClass</Field> <Operator>Equal</Operator> <ValueList>Regular</ValueList> </FilterList> </ReadProductRequest> 9 of 29

10 API Call Example Shown below is an example of the syntax used to issue a call and the type of data retrieved. Example for Individual Detail Request <ReadCategoryRequest xmlns="urn:networksolutions:apis"> <RequestId>ReadCategoryDetail</RequestId> <DetailSize>Large</DetailSize> <FilterList> <Field>CategoryId</Field> <ValueList>87</ValueList> <Operator>Equal</Operator> </FilterList> </ReadCategoryRequest> Response <ReadCategoryResponse xmlns="urn:networksolutions:apis"> <RequestId>ReadCategoryDetail</RequestId> <Status>Success</Status> <TimeStamp> T15:04: Z</TimeStamp> <PageResponse> <Page>1</Page> <Size>100</Size> <TotalSize>1</TotalSize> <HasMore>false</HasMore> </PageResponse> <CategoryList CategoryId="87"> <Name>Tees Short Sleeve</Name> <Description>Special short sleeve t- shirt.</description> <FullDescription><strong><span style="color: #1e90ff">Full Description</span></strong></FullDescription> <Enabled>true</Enabled> <SortOrder>0</SortOrder> <PageUrl>~/teesshortsleeve.aspx</PageUrl> <Depth>2</Depth> <Parent CategoryId="85"> <Name>Apparel </Name> <Enabled>false</Enabled> </Parent> <Image> <Path>/themes/default/images/Sunset.jpg</Path> <AlternateText>Sunset</AlternateText> </Image> <SearchInformation> <Title>Short Sleeve T-Shirt</Title> <Keyword>Tee, Shirt, Blue</Keyword> <Description>This is the metadescriptions</description> </SearchInformation> </CategoryList> </ReadCategoryResponse> 10 of 29

11 Category Management ReadCategoryRequest Arguments Argument Type Required Meaning CategoryId Long Conditional Auto assigned value that uniquely identifies the category. Name String Conditional Specifies the name of the category. Must be unique within a particular branch in the category tree. Max length: 100 (characters). Description String Optional Describes the Category. Max length: 100 (characters). FullDescription String Optional Full description rendered in the category details page. Enabled String Optional Determines if the Category is visible on the site. Default value: True Depth Integer Optional Readonly value indicating at which level the category is at. Top level categories will have a depth of 1. Valid Range: 1 to 5 SortOrder String Optional Determines the order in which Categories are displayed. Valid Range: PageUrl String Optional The page to the storefront to which you can redirect to display the category details page. (REQUIRES MUCH MORE EPLANATION) You can supply this value in CreateCategory or UpdateCategory and invalid characters are removed. The corrected value is echoed in the response. Max length: 75 (characters) Parent CategoryType Optional container Parent.CategoryId Long Optional Specifies the parent category. Parent.Name String Optional Read only name of the parent category. SearchInformation SearchInformat Optional iontype container SearchInformation.Title String Optional Specifies the Meta Title html for the category detail page. Max length: 250 (characters). 11 of 29

12 Argument Type Required Meaning SearchInformation.Keyword String Optional Specifies the Meta Keyword html for the category detail page. Max length: 3000 (characters). SearchInformation.Description String Optional Specifies the Meta description html for the category detail page. Image ImageType container Optional Max length: 500 (characters). The Category image logo to display. Image.Path String Optional Path to the image. Max length: 255 (characters). Image.AlternativeText String Optional Alternative Text to display. Max length: 255 (characters). ReadCategory Response The default sort for categories is Depth followed by SortOrder and Name. The following table shows returned values at each detail level. Argument Small Medium Large Filter Name Enabled Depth SortOrder PageUrl Description If specified If specified FullDescription If specified If specified If specified Parent.Name Parent.Enabled Image.Path Image.AlternateText SearchInformation.Title If specified If specified If specified If specified SearchInformation.Keyword If specified SearchInformation.Description If specified 12 of 29

13 ReadCategory Filters Filter Description Values Name Category name String Enabled Whether it is enabled or not Boolean SortOrder The sort order number specified Integer Depth Hierarchy depth number Integer - Between 1 and 5 CategoryId Category Id Long Parent.CategoryId Category Id of parent category Long 13 of 29

14 Customer Management Customers are shoppers who register on the storefront and have login credentials to track their orders. ReadCustomer Arguments Argument Type Required String (Guid format) Conditional Auto assigned value that uniquely identifies the customer. Address String Conditional Specifies the address of the Customer. Must be unique. Max length: 255 (characters) and must be valid address format. Password String Optional Password for the customer to log into the storefront. This is not returned by ReadCustomer. Min length: 6 (characters). Max length: 50 (characters). NonTaxable Boolean Optional Specifies that the customer is not taxed for any purchases they make. Default value: false TaxIdentification String Optional Tax number or tax code for the customer. BillingAddress AddressType Container Conditional Max length: 100 (characters). Container for the billing information for the customer. Required in CreateCustomer BillingAddress.FirstName String Conditional First name of the customer. Max length: 50 (characters) BillingAddress.LastName String Conditional Last name of the customer. Max length: 50 (characters) BillingAddress.Company String Optional Company associated with the customer. Max length: 250 (characters) BillingAddress.Address1 String Conditional Street address for the customer. Max length: 100 (characters). BillingAddress.Address2 String Optional Street address line 2 for the customer. Max length: 100 (characters). BillingAddress.City String Conditional City for the customer. Max length: 100 (characters). BillingAddress.StateProvince String Conditional State or province for the customer. If country is US (United States) or CA (Canada) then StateProvince is required and must be specified as two digit abbrievation of State or province. For all other countries StateProvince field is optional and free form text field. Max length: 50 (characters). BillingAddress.PostalCode String Conditional Postal code for the customer. Max length: 40 (characters). 14 of 29

15 Argument Type Required Meaning BillingAddress.Country CountryCodeType Conditional Country for the customer. BillingAddress.Phone String Optional Phone number for the customer. Max length: 3000 (characters). ShippingAddress AddressType Container Optional All rules of BillingAddress nodes above apply. If not specified in CreateCustomer the BillingAddress specified is assumed to be the ShippingAddress. All ShippingAddress.Fields See BillingAddress Field above for usage. ReadCustomer The following table shows returned values at each detail level. Argument Small Medium Large Filter Address Password NonTaxable TaxIdentification If specified If specified BillingAddress.FirstName BillingAddress.LastName BillingAddress.Company BillingAddress.Address1 BillingAddress.Address2 If specified If specified BillingAddress.City BillingAddress.StateProvince If specified If specified BillingAddress.PostalCode BillingAddress.Country BillingAddress.Phone If specified If specified ShippingAddress.FirstName ShippingAddress.LastName ShippingAddress.Company ShippingAddress.Address1 ShippingAddress.Address2 ShippingAddress.City ShippingAddress.StateProvince ShippingAddress.PostalCode If specified If specified 15 of 29

16 ShippingAddress.Country ShippingAddress.Phone If specified ReadCustomer Filters Filter Description Values Address Customer address String CustomerId Customer Id Long CreateDate Customer creation date Date CustomerNumber Existing customer's number String BillingAddress.FirstName Customer BillingAddress.FirstName String BillingAddress.LastName Customer BillingAddress.LastName String BillingAddress.City Customer BillingAddress.City String BillingAddress.StateProvince Customer BillingAddress.StateProvince String BillingAddress.PostalCode Customer BillingAddress.PostalCode String BillingAddress.Country Customer BillingAddress.Country Two characters country code (eg: US, CA, JP) ShippingAddress.FirstName Customer ShippingAddress.FirstName String ShippingAddress.LastName Customer ShippingAddress.LastName String ShippingAddress.City Customer ShippingAddress.City String ShippingAddress.StateProvince Customer ShippingAddress.StateProvince String ShippingAddress.PostalCode Customer ShippingAddress.PostalCode String ShippingAddress.Country Customer ShippingAddress.Country Two characters country code (eg: US, CA, JP) Network Solutions, All Rights Reserved 16 of 29

17 Manufacturer Management You can get a list of your product s manufacturers to display on your sites product pages. You can associate these manufacturers with your products on the Advanced tab in the Products section. Manufacturer Arguments Argument Type Required Long Conditional Auto assigned value which uniquely identifies the manufacturer. Name String Conditional Specifies the name of the manufacturer. Must be unique across all manufacturers. Max length: 150 (characters). Description String Optional Describes the manufacturer. SortOrder Integer Optional Determines the order of sorting on the storefront. Dependent on Setting value MFGSORTTYPE. Image ImageType Container Optional Default Value: 0 The manufacturer image logo to display. Image.Path Boolean Optional Path to the image. Combine value with setting of url. Default Value: False Image.AlternativeText Boolean Optional Determines if the contains product information. Set this to false if you do not wish for you Manufacturer to know the product information. Default Value: False 17 of 29

18 ReadManufacturer Following table shows returned value at each detail level. Argument Small Medium Large Filter Name Description If specified If specified SortOrder ImagePath If specified If specified ImageAlternateText If specified If specified ReadManufacturer Filters Filter Description Values Name Manufacturer name String SortOrder SortOrder Integer ManufacturerId ManufacturerId Long 18 of 29

19 Order Management The Public API has the ability to receive and update order information. Currently, this is limited to ReadOrder Arguments Argument Type Required Meaning OrderList OrderID String Conditional Auto assigned value that uniquely identifies the order CreateDate String Conditional Date that the order was String (Guid format) Conditional Auto assigned value that uniquely identifies the customer. Address String Conditional Specifies the address of the Customer. Must be unique. Max length: 255 (characters) and must be valid address format. Password String Optional Password for the customer to log into the storefront. This is not returned by ReadCustomer. Min length: 6 (characters). Max length: 50 (characters). NonTaxable Boolean Optional Specifies that the customer is not taxed for any purchases they make. Default value: false TaxIdentification String Optional Tax number or tax code for the customer. BillingAddress AddressType Container Conditional Max length: 100 (characters). Container for the billing information for the customer. Required in CreateCustomer BillingAddress.FirstName String Conditional First name of the customer. Max length: 50 (characters) BillingAddress.LastName String Conditional Last name of the customer. Max length: 50 (characters) BillingAddress.Company String Optional Company associated with the customer. Max length: 250 (characters) BillingAddress.Address1 String Conditional Street address for the customer. Max length: 100 (characters). BillingAddress.Address2 String Optional Street address line 2 for the customer. Max length: 100 (characters). BillingAddress.City String Conditional City for the customer. Max length: 100 (characters). BillingAddress.StateProvince String Conditional State or province for the customer. If country is US (United States) or CA (Canada) then StateProvince is required and must be specified as two digit abbrievation of State or province. For all other countries StateProvince field is optional and free form text field. Max length: 50 (characters). 19 of 29

20 Argument Type Required Meaning BillingAddress.PostalCode String Conditional Postal code for the customer. Max length: 40 (characters). BillingAddress.Country CountryCodeType Conditional Country for the customer. BillingAddress.Phone String Optional Phone number for the customer. ShippingAddress AddressType Container Optional Max length: 3000 (characters). All rules of BillingAddress nodes above apply. If not specified in CreateCustomer the BillingAddress specified is assumed to be the ShippingAddress. All ShippingAddress.Fields See BillingAddress Field above for usage. Subtotal Currency String Conditional The type of currency and subtotal of the order. Total Currency String Conditional The type of currency and total of the order. CombineHandling Boolean Conditional Specifies whether the products will be handled together. Weight String Conditional Specifies the weight of the product. FreeShipping Boolean Conditional Determines whether this order has free shipping. Name String Conditional The Name of the product. NonTaxable Boolean Optional Specifies that the customer is not taxed for any purchases they make. Default value: false ProductID String Conditional Auto assigned value that uniquely identifies the product. ProductClass String Conditional Determines the class of the product. QtySold String Conditional Specifies the number of the product in the order. UnitPrice Currency String Conditional The type of currency and unit price of the product. PaymentMethod String Conditional Specifies the payment method for the order. Shipping String Conditional Specifies the name and carrier shipping the product. Status OrderStatusID String Conditional Auto assigned value that uniquely identifies the order status. Questionlist String Conditional Specifies the personalization questions used in the order. 20 of 29

21 ReadOrder Following table shows returned value at each detail level. Argument Small Medium Large Filter Field OrderList OrderID CreateDate Address Password NonTaxable TaxIdentification BillingAddress.FirstName BillingAddress.LastName BillingAddress.Company BillingAddress.Address1 BillingAddress.Address2 If Specified If Specified BillingAddress.City BillingAddress.StateProvince BillingAddress.PostalCode BillingAddress.Country BillingAddress.Phone ShippingAddress All ShippingAddress.Fields See BillingAddress Field above for usage. If Specified If Specified If Specified If Specified Subtotal Currency Total Currency CombineHandling Weight FreeShipping Name NonTaxable ProductID ProductClass 21 of 29

22 QtySold UnitPrice Currency PaymentMethod Shipping Status OrderStatusID Questionlist ReadOrder Filters Filter Description Values OrderId OrderId Long OrderNumber OrderNumber Long Customer. Address Order Customer. Address String Archived Archived Boolean Status.OrderStatusId Status.OrderStatusId Long CreateDate CreateDate Date BillingAddress.FirstName Order BillingAddress.FirstName String BillingAddress.LastName Order BillingAddress.LastName String BillingAddress.City Order BillingAddress.City String ShippingAddress.FirstName Order ShippingAddress.FirstName String ShippingAddress.LastName Order ShippingAddress.LastName String ShippingAddress.City Order ShippingAddress.City String LineItemList.ProductId Order LineItemList.ProductId Long LineItemList.Name Order LineItemList.Name String UpdateOrder Arguments Argument Type Required Meaning OrderList OrderID String Conditional Auto assigned value that uniquely identifies the order Status OrderStatusID String Conditional Auto assigned value that uniquely identifies the order status. Tracking # String Optional Specifies the tracking number used to update the order. AdminNotes String Optional Specifies new Admin Notes to be added to the order. Notes String Optional Specifies new Notes to be added to the order. SalesRep String Optional Species a Sales Rep to be added to the order. 22 of 29

23 Order Status Management The Public API can gather the status of orders from the database. ReadOrderStatus Arguments Argument Type Required Meaning OrderStatusID String Conditional Auto assigned value that uniquely identifies the order status Name String Conditional The status name. Customer Boolean Conditional Specifies whether this order status triggers an to the customer. Administrator Boolean Conditional Specifies whether this order status triggers an to the administrator. NextStatusList OrderStatusID String Conditional Auto assigned value that uniquely identifies the possible statuses the order can be assigned. ReadOrderStatus Argument Small Medium Large Filter Field OrderStatusID Name Customer Administrator NextStatusList OrderStatusID Read OrderStatus Filters Filter Description Values OrderStatusId OrderStatusId Long Parent.OrderStatusId OrderStatus Parent.OrderStatusId Long Name OrderStatus Name String 23 of 29

24 Product Management The Public API can receive information about a client s products and also update the inventory. ReadProduct Arguments Argument Type Required Meaning ProductList ProductID String Conditional Auto assigned value that uniquely identifies the product. CategorySpecial Boolean Conditional Specifies whether or not this product is a special product for it s category. Description String Conditional The short description for the product. Enabled Boolean Conditional Specifies whether this product is enabled on the storefront. FreeShipping Boolean Conditional Specifies whether this product has free shipping enabled. FullDescription String Optional The full description for the product. HomePageSpecial Boolean Optional Specifies whether the product a home page special. ManufacturerPartNumber String Optional Specifies the Manufacturer Part Number used for the product. Name String Conditional The name of the product. NonTaxable Boolean Optional Specifies that the customer is not taxed for any purchases they make. Default value: false PageUrl String Optional Specifies the page url for the product. PreventPurchase Boolean Optional Specifies whether the product is prevented from being purchased by customers. ProductClass String Optional Specifies the class of the product. SortOrder String Optional Specifies the particular sort order number for the product. Price String Conditional Specifies the currency type and price of the product. Weight String Conditional Specifies the weight of the product. CategoryList CategoryID String Conditional Specifies the Category ID for the product. VariationList VariationGroupID String Optional Auto assigned value that uniquely identifies the variation group for the product. OptionList VariationOptionID String Optional Specifies the Variation Option ID for the individual variation options for the specific variation group. Enabled String Optional Specifies whether the specific variation option is enabled. ThumbnailURL String Optional Specifies the Url for the thumbnail image of the product. DisplayURL String Optional Specifies the Url for the display image of the product. DetailURL String Optional Specifies the Url for the detail image of the product. 24 of 29

25 ReadProduct Argument Small Medium Large Filter Field ProductList ProductID CategorySpecial Description Enabled FreeShipping FullDescription HomePageSpecial ManufacturerPartNumber Name NonTaxable PageUrl PreventPurchase ProductClass SortOrder Price Weight CategoryList CategoryID VariationList VariationGroupID OptionList VariationOptionID Enabled ThumbnailURL DisplayURL DetailURL 25 of 29

26 ReadProduct Filters Filter Description Values Parent.ProductId Product Parent.ProductId Long Parent.Category.CategoryId Product Parent.Category.CategoryId Long Parent.CategoryList.CategoryId Product Parent.CategoryList.CategoryId Long ParentList.Category.CategoryId Product ParentList.Category.CategoryId Long ParentList.CategoryList.CategoryId Product ParentList.CategoryList.CategoryId Long ProductId ProductId Long Enabled Whether it is enabled or not Boolean Name Product Name String SortOrder SortOrder Integer ParentProduct Product's parent entity ProductType ProductClass ProductClass Regular, GiftCertificate, Electronic, Custom QtyInStock QtyInStock Integer PartNumber PartNumber String Manufacturer.ManufacturerId Product Manufacturer.ManufacturerId Long Warehouse.WarehouseId Product Warehouse.WarehouseId Long Category.CategoryId Product Category.CategoryId Long CategoryList.CategoryId Product CategoryList.CategoryId Long UpdateInventory You have a choice of either Updating the inventory, or adding to the inventory. The update button will replace your current inventory in the storefront while the Add to inventory will add the amount you wish to your current inventory. The Public API accepts negative numbers. Argument Type Required Meaning ProductID String Conditional Auto assigned value that uniquely identifies the product. QtyInStock String Conditional Specifies the quantity of product in stock. Adjustment Boolean Conditional Determines whether you are adding the QtyInStock to the current number of product. 26 of 29

27 Site Information Management The Site Information API call will return the basic information used to describe how the client s site is setup. ReadSiteSetting Arguments Argument Type Required Meaning CompanyName String Conditional The name of the site. Enabled Boolean Conditional Whether the site is enabled. StoreUrl String Conditional Specifies the Url for the store. StoreSecureUrl String Conditional Specifies the Secure Url for the store. Software String Conditional Specifies whether the site uses the Standard or Professional E-Commerce package. SoftwareVersion String Conditional Specifies the version of the current E-Commerce package being used by the site. 27 of 29

28 Warehouse Management Warehouses are used to send s and notifications for products you are drop-shipping. A store is limited to 25 warehouses. ReadWarehouse Argument Type Required Long Conditional is an automatically assigned value and uniquely identifies the warehouse. Name String Conditional Specifies the name of the Warehouse. Must be unique across all warehouses. Max length: 100 (characters). Address String Optional Specifies the address of the warehouse to which an containing order information is sent when an order is placed. Max length: 255 (characters) and must be valid format. Header String Optional The custom header in the . Max length: 255 (characters) and must be valid format. Pricing Boolean Optional Determines if the contains pricing information about the products. Set this to false if you do not wish for you warehouse to know the price the product sold for. Default Value: False Products Boolean Optional Determines if the contains product information. Set this to false if you do not wish for you warehouse to know the product information. Default Value: False Shipping Boolean Optional Determines if the contains the customer s shipping address. Set this to false if you do not wish for you warehouse to know the customer s address. Default Value: False Enabled Boolean Optional Determines if an will be sent to the warehouse. Default Value: False Notes String Optional Administrator only notes about the warehouse. Max length: 2000 (characters) 28 of 29

29 ReadWarehouse Following table shows returned value at each detail level. Argument Small Medium Large Filter Name Address If specified If specified If specified Header If specified If specified Pricing Products Shipping Enabled Notes If specified ReadWarehouse Filters Filter Description Values Address Warehouse Address String Enabled Whether it is enabled or not Boolean Name Warehouse name String WarehouseId WarehouseId Long 29 of 29

Configuration > Payment gateways Configure the payment gateway tokens for your credit card and PayPal payment methods if applicable.

Configuration > Payment gateways Configure the payment gateway tokens for your credit card and PayPal payment methods if applicable. Storefront Users Manual Quick Start Settings Your shopping cart is pre-configured with default values suitable for most businesses. In most cases, you only need to configure the settings below to start

More information

CoreCommerce Administrator Guide

CoreCommerce Administrator Guide Welcome to CoreCommerce, an E-Commerce Software Solution for your business. Whether you are creating a small catalog, or you are looking to upgrade to a newer solution, CoreCommerce is the solution for

More information

Ecommerce User Manual 105

Ecommerce User Manual 105 Ecommerce User Manual 105 Shopping Lists (Premium Only) A new feature for our Pro-Store clients is the Shopping List option. Now you can offer your customers the ability to create Shopping Lists which

More information

Inspire Commerce &.pay. Customer Vault API. Inspire Commerce 800-261-3173 support@inspirecommerce.com

Inspire Commerce &.pay. Customer Vault API. Inspire Commerce 800-261-3173 support@inspirecommerce.com Inspire Commerce &.pay Customer Vault API Inspire Commerce 800-261-3173 support@inspirecommerce.com Overview Customer Vault Security Concerns The Customer Vault was designed specifically for businesses

More information

Contents. 2 Alfresco API Version 1.0

Contents. 2 Alfresco API Version 1.0 The Alfresco API Contents The Alfresco API... 3 How does an application do work on behalf of a user?... 4 Registering your application... 4 Authorization... 4 Refreshing an access token...7 Alfresco CMIS

More information

INVENTORY MANAGEMENT

INVENTORY MANAGEMENT support@magestore.com sales@magestore.com Phone: 084 4 8585 4587 INVENTORY MANAGEMENT PLATINUM VERSION USER GUIDE Version 1.4 1 Table of Contents 1. INTRODUCTION... 4 2. HOW TO USE... 9 2.1. Manage Suppliers...

More information

Managing Your ecommerce Store

Managing Your ecommerce Store West Virginia University Information Technology Services ecommerce Store Manager QuickStart Guide Managing Your ecommerce Store Last Updated: August 22, 2014 Table Of Contents If you are using a Mac, click

More information

[Jet-Magento Integration]

[Jet-Magento Integration] CedCommerce. All rights reserved. SUPPORT@CEDCOMMERCE.COM [Jet-Magento Integration] CedCommerce Jet-Magento Integration, an extension by CedCommerce, establishes synchronization of inventory, price, other

More information

SourceAnywhere Service Configurator can be launched from Start -> All Programs -> Dynamsoft SourceAnywhere Server.

SourceAnywhere Service Configurator can be launched from Start -> All Programs -> Dynamsoft SourceAnywhere Server. Contents For Administrators... 3 Set up SourceAnywhere... 3 SourceAnywhere Service Configurator... 3 Start Service... 3 IP & Port... 3 SQL Connection... 4 SourceAnywhere Server Manager... 4 Add User...

More information

Bazaarvoice for Magento Extension Implementation Guide v6.3.4

Bazaarvoice for Magento Extension Implementation Guide v6.3.4 Bazaarvoice Bazaarvoice for Magento Extension Implementation Guide v6.3.4 Version 6.3.4 Bazaarvoice Inc. 03/25/2016 Introduction Bazaarvoice maintains a pre-built integration into the Magento platform.

More information

API Integration Guide

API Integration Guide API Integration Guide INTEGRATION GUIDE VERSION 2.2 Table of Contents 1. Overview...5 1.1 Test Merchant Account v/s Live Merchant Account...5 1.2 Target Audience...5 1.3 Assistance...6 1.4 Technical Architecture...6

More information

Durango Merchant Services Customer Vault API

Durango Merchant Services Customer Vault API Durango Merchant Services Customer Vault API V1.1 Integration Resources Documentation April 2008 Updated Sept 2011 Durango-Direct.com 866-415-2636 Contents Overview... 3 Customer Vault... 3 Methodology...

More information

Online sales management software Quick store setup. v 1.1.3

Online sales management software Quick store setup. v 1.1.3 Online sales management software Quick store setup v 1.1.3 Table of Contents 1Shopizer urls...3 2Configure your store...3 Store and profile...4 Store Front Configuration...4 3Integration...6 4Configure

More information

Your Guide to Integrations with Digital River

Your Guide to Integrations with Digital River Digital River, Inc Your Guide to Integrations with Digital River Single Sign-On 8/3/2010 Document Version 1.2 Contents Introduction... 3 Terms, Shapes, and Definitions... 4 Typical High Level Work Flows...

More information

Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY

Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY Advanced Web Development Duration: 6 Months SCOPE OF WEB DEVELOPMENT INDUSTRY Web development jobs have taken thе hot seat when it comes to career opportunities and positions as a Web developer, as every

More information

Salesforce Opportunities Portlet Documentation v2

Salesforce Opportunities Portlet Documentation v2 Salesforce Opportunities Portlet Documentation v2 From ACA IT-Solutions Ilgatlaan 5C 3500 Hasselt liferay@aca-it.be Date 29.04.2014 This document will describe how the Salesforce Opportunities portlet

More information

int_adyen Version 15.1.0

int_adyen Version 15.1.0 int_adyen Version 15.1.0 LINK Integration Documentation - int_adyen Page 1 Table of Contents 1. General Information... 5 2. Component Overview... 6 2.1. Functional Overview... 6 Short description of the

More information

Getting Started Guide. Getting Started With Quick Shopping Cart. Setting up and configuring your online storefront.

Getting Started Guide. Getting Started With Quick Shopping Cart. Setting up and configuring your online storefront. Getting Started Guide Getting Started With Quick Shopping Cart Setting up and configuring your online storefront. Getting Started with Quick Shopping Cart Version 1.2 (12.17.08) Copyright 2007. All rights

More information

API Documentation. Version 2.0

API Documentation. Version 2.0 API Documentation Version 2.0 Table of Contents 1. Overview...5 1.1 Test Merchant Account v/s Live Merchant Account...5 1.2 Target Audience...5 1.3 Assistance...6 1.4 Technical Architecture...6 2 Getting

More information

Online shopping store

Online shopping store Online shopping store 1. Research projects: A physical shop can only serves the people locally. An online shopping store can resolve the geometrical boundary faced by the physical shop. It has other advantages,

More information

Kentico CMS 7.0 E-commerce Guide

Kentico CMS 7.0 E-commerce Guide Kentico CMS 7.0 E-commerce Guide 2 Kentico CMS 7.0 E-commerce Guide Table of Contents Introduction 8... 8 About this guide... 8 E-commerce features Getting started 11... 11 Overview... 11 Installing the

More information

Novell ZENworks Asset Management 7.5

Novell ZENworks Asset Management 7.5 Novell ZENworks Asset Management 7.5 w w w. n o v e l l. c o m October 2006 USING THE WEB CONSOLE Table Of Contents Getting Started with ZENworks Asset Management Web Console... 1 How to Get Started...

More information

Aras Corporation. 2005 Aras Corporation. All rights reserved. Notice of Rights. Notice of Liability

Aras Corporation. 2005 Aras Corporation. All rights reserved. Notice of Rights. Notice of Liability Aras Corporation 2005 Aras Corporation. All rights reserved Notice of Rights All rights reserved. Aras Corporation (Aras) owns this document. No part of this document may be reproduced or transmitted in

More information

AJ Shopping Cart. Administration Manual

AJ Shopping Cart. Administration Manual AJ Shopping Cart Administration Manual AJ Square Consultancy Services (p) Ltd., The Lord's Garden, #1-12, Vilacheri Main Road, Vilacheri, Madurai-625 006.TN.INDIA, Ph:+91-452-2485553, 2485554. Fax : 2484600

More information

CA Nimsoft Service Desk

CA Nimsoft Service Desk CA Nimsoft Service Desk Configure Outbound Web Services 7.13.7 Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject

More information

SPARROW Gateway. Developer API. Version 2.00

SPARROW Gateway. Developer API. Version 2.00 SPARROW Gateway Developer API Version 2.00 Released May 2015 Table of Contents SPARROW Gateway... 1 Developer API... 1 Overview... 3 Architecture... 3 Merchant Private Key and Payment Types... 3 Integration...

More information

Getting Started Guide. Getting Started With Web Store Design

Getting Started Guide. Getting Started With Web Store Design Getting Started Guide Getting Started With Web Store Design Getting Started with Web Store Design Copyright 2009. All rights reserved. Distribution of this work or derivative of this work is prohibited

More information

Ecommerce User Manual 225

Ecommerce User Manual 225 Ecommerce User Manual 225 In the Profile Settings page, click the Check Status link in the upper right section of the page. This will open the Tracking Status Information page. The Web Property ID is the

More information

Setting Up Solar Web Commerce. Release 8.6.9

Setting Up Solar Web Commerce. Release 8.6.9 Setting Up Solar Web Commerce Release 8.6.9 Legal Notices 2011 Epicor Software Corporation. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Epicor and the Epicor logo

More information

Welcome to PowerClaim Net Services!

Welcome to PowerClaim Net Services! Welcome to PowerClaim Net Services! PowerClaim Net Services provides a convenient means to manage your claims over the internet and provides detailed reporting services. You can access PowerClaim Net Services

More information

Virto Active Directory Service for SharePoint. Release 4.1.2. Installation and User Guide

Virto Active Directory Service for SharePoint. Release 4.1.2. Installation and User Guide Virto Active Directory Service for SharePoint Release 4.1.2 Installation and User Guide 2 Table of Contents OVERVIEW... 3 SYSTEM REQUIREMENTS... 4 OPERATING SYSTEM... 4 SERVER... 4 BROWSER... 5 INSTALLATION...

More information

Using LDAP Authentication in a PowerCenter Domain

Using LDAP Authentication in a PowerCenter Domain Using LDAP Authentication in a PowerCenter Domain 2008 Informatica Corporation Overview LDAP user accounts can access PowerCenter applications. To provide LDAP user accounts access to the PowerCenter applications,

More information

OpenLDAP Oracle Enterprise Gateway Integration Guide

OpenLDAP Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 OpenLDAP Oracle Enterprise Gateway Integration Guide 1 / 29 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

Refer to the Integration Guides for the Connect solution and the Web Service API for integration instructions and issues.

Refer to the Integration Guides for the Connect solution and the Web Service API for integration instructions and issues. Contents 1 Introduction 4 2 Processing Transactions 5 2.1 Transaction Terminology 5 2.2 Using Your Web Browser as a Virtual Point of Sale Machine 6 2.2.1 Processing Sale transactions 6 2.2.2 Selecting

More information

Magento extension for ricardo.ch

Magento extension for ricardo.ch Magento User Guide Plug-in für ricardo.ch Magento extension for ricardo.ch Version 1.2.0 Page 2 of 45 Table of content 1 INTRODUCTION 5 1.1 OVERVIEW 5 1.2 ABOUT RICARDO.CH GROUP 5 1.3 ABOUT DIGLIN 5 1.4

More information

Official Amazon Checkout Extension for Magento Commerce. Documentation

Official Amazon Checkout Extension for Magento Commerce. Documentation Official Amazon Checkout Extension for Magento Commerce Documentation 1. Introduction This extension provides official integration of your Magento store with Inline Checkout by Amazon service. Checkout

More information

AVATAX 15 USER GUIDE

AVATAX 15 USER GUIDE AVATAX 15 USER GUIDE Table of Contents About Avatax 15 extension Flow and integration with StoreFront Installation Connection Settings Validation & Normalization Tax Calculations GetTax details while Cart

More information

Bazaarvoice for Magento

Bazaarvoice for Magento Bazaarvoice Bazaarvoice for Magento Extension Implementation Guide v6.1.2.3 Version 6.1.2.3 Bazaarvoice Inc. 8/5/2015 Introduction Bazaarvoice maintains a pre-built integration into the Magento platform.

More information

PassKey Manager. Schoolwires Centricity

PassKey Manager. Schoolwires Centricity Schoolwires Centricity Table of Contents Introduction... 1 What Provides... 1 What Does Not Provide... 1 Definitions for... 1 Manage PassKeys in Site Manager... 2 Access... 2 Create PassKeys... 2 Create

More information

Insight Student for Chromebooks - Auto Configuration

Insight Student for Chromebooks - Auto Configuration 1 s - Auto Configuration Technical Paper Last modified: June 2015 Web: www.faronics.com Email: sales@faronics.com Phone: 800-943-6422 or 604-637-3333 Fax: 800-943-6488 or 604-637-8188 Hours: Monday to

More information

CounterPoint SQL and Magento ecommerce Interface

CounterPoint SQL and Magento ecommerce Interface CounterPoint SQL and Magento ecommerce Interface Requirements: CounterPoint SQL: 8.3.9, 8.4.2 Magento Community Edition: 1.5.1+ (older versions are not compatible due to changes in Magento s API) MagentoGo

More information

Western Kentucky University s Promotional Product Web Store. User Guide

Western Kentucky University s Promotional Product Web Store. User Guide Western Kentucky University s Promotional Product Web Store User Guide e0001df 07/01/2010 Guy Brown Promotional s Web Store User Guide This user guide was created to help make your web store experience

More information

Twinfield Single Sign On

Twinfield Single Sign On Twinfield Single Sign On manual, version 5.4 April 2009 For general information about our webservices see the Twinfield Webservices Manual Twinfield International NV De Beek 9-15 3871 MS Hoevelaken Netherlands

More information

Big Fish ecommerce. BF Import Mapping.doc

Big Fish ecommerce. BF Import Mapping.doc Big Fish ecommerce BF Import Mapping.doc Last Updated: 25-Feb-2011 TABLE OF CONTENTS 1 Modification History...4 2 Introduction...5 2.1 Overview of OFBiz Import Functionality...5 2.2 Document Scope...5

More information

System Administrator Training Guide. Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger.

System Administrator Training Guide. Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger. System Administrator Training Guide Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger.com Contents Contents... 2 Before You Begin... 4 Overview... 4

More information

Administering Jive for Outlook

Administering Jive for Outlook Administering Jive for Outlook TOC 2 Contents Administering Jive for Outlook...3 System Requirements...3 Installing the Plugin... 3 Installing the Plugin... 3 Client Installation... 4 Resetting the Binaries...4

More information

DocuSign Connect for Salesforce Guide

DocuSign Connect for Salesforce Guide Information Guide 1 DocuSign Connect for Salesforce Guide 1 Copyright 2003-2013 DocuSign, Inc. All rights reserved. For information about DocuSign trademarks, copyrights and patents refer to the DocuSign

More information

Automate G/L Consolidation User Guide

Automate G/L Consolidation User Guide Automate G/L Consolidation User Guide Important Notice TaiRox does not warrant or represent that your use of this software product will be uninterrupted or error-free or that the software product can be

More information

1999-2006 enom, Inc. API response codes

1999-2006 enom, Inc. API response codes API response codes Introduction When you run a query against the enom API, the response includes a numeric code and a corresponding text message. This allows us to standardize our responses and make them

More information

Manual Password Depot Server 8

Manual Password Depot Server 8 Manual Password Depot Server 8 Table of Contents Introduction 4 Installation and running 6 Installation as Windows service or as Windows application... 6 Control Panel... 6 Control Panel 8 Control Panel...

More information

PROCESS TRANSACTION API

PROCESS TRANSACTION API PROCESS TRANSACTION API Document Version 8.7 May 2015 For further information please contact Digital River customer support at (888) 472-0811 or support@beanstream.com. 1 TABLE OF CONTENTS 2 Lists of tables

More information

TARGETPROCESS HELP DESK PORTAL

TARGETPROCESS HELP DESK PORTAL TARGETPROCESS HELP DESK PORTAL v.2.17 User Guide This document describes TargetProcess Help Desk Portal functionality and provides information about TargetProcess Help Desk Portal usage. 1 HELP DESK PORTAL...2

More information

CHAPTER 26 - SHOPPING CART

CHAPTER 26 - SHOPPING CART CHAPTER 26 - SHOPPING CART ecommerce Hosting With ihoststudio's Shopping Cart Sell your items on the web with the ihoststudio shopping cart. Product catalogs Shopping cart Credit Card Payments Store control

More information

OSF INTEGRATOR for INGRAM MICRO Integration Guide

OSF INTEGRATOR for INGRAM MICRO Integration Guide OSF INTEGRATOR for INGRAM MICRO Integration Guide Table of Contents 1 Installation... 3 1.1 Disabling Extension... 4 1.2 Uninstalling Extension... 4 2 Configuration... 5 3 Usage... 6 3.1 Automated product

More information

E-Commerce Installation and Configuration Guide

E-Commerce Installation and Configuration Guide E-Commerce Installation and Configuration Guide Rev: 2011-05-19 Sitecore E-Commerce Fundamental Edition 1.1 E-Commerce Installation and Configuration Guide A developer's guide to installing and configuring

More information

MAGEJAM PLUGIN INSTALLATION GUIDE

MAGEJAM PLUGIN INSTALLATION GUIDE MAGEJAM PLUGIN INSTALLATION GUIDE BEFORE YOU BEGIN ANY INSTALL OR UPGRADE ** Always make sure to make a backup of your Magento installation before installing any extension especially on a live system.**

More information

i>clicker v7 Gradebook Integration: Blackboard Learn Instructor Guide

i>clicker v7 Gradebook Integration: Blackboard Learn Instructor Guide i>clicker v7 Gradebook Integration: Blackboard Learn July 2015 Table of Contents Overview... 3 Step 1: Prepare a Configured Version of i>clicker... 4 Step 2: Configure your i>clicker Software... 5 Step

More information

E-Commerce User Manual

E-Commerce User Manual Table of Contents Welcome!...13 How to Find Topics in This Manual...13 Getting Started: Where Should I Begin?...13 What's New?...13 Store Setup Checklist...14 Using the Store Setup Checklist...14 The E-Commerce

More information

Creating Home Directories for Windows and Macintosh Computers

Creating Home Directories for Windows and Macintosh Computers ExtremeZ-IP Active Directory Integrated Home Directories Configuration! 1 Active Directory Integrated Home Directories Overview This document explains how to configure home directories in Active Directory

More information

This guide provides additional information about topics covered in the webinar

This guide provides additional information about topics covered in the webinar This guide provides additional information about topics covered in the webinar Scan to go there now! Copyright 2012 X.commerce, Inc. All rights reserved. Contents CHAPTER 1: Leveraging Store Content 1

More information

E-Commerce Installation and Configuration Guide

E-Commerce Installation and Configuration Guide E-Commerce Installation and Configuration Guide Rev: 2012-02-17 Sitecore E-Commerce Services 1.2 E-Commerce Installation and Configuration Guide A developer's guide to installing and configuring Sitecore

More information

vcloud Air Platform Programmer's Guide

vcloud Air Platform Programmer's Guide vcloud Air Platform Programmer's Guide vcloud Air OnDemand 5.7 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.

More information

Chapter 10 Encryption Service

Chapter 10 Encryption Service Chapter 10 Encryption Service The Encryption Service feature works in tandem with Dell SonicWALL Email Security as a Software-as-a-Service (SaaS), which provides secure data mail delivery solutions. The

More information

SpringCM Troubleshooting Guide for Salesforce

SpringCM Troubleshooting Guide for Salesforce SpringCM Troubleshooting Guide for Salesforce July 2013 TABLE OF CONTENTS FAQS:... 3 WHY DID I NOT RECEIVE A SPRINGCM ACTIVATION EMAIL?... 3 WHY DON T MY SALESFORCE USERS HAVE ACCESS TO SPRINGCM?... 3

More information

Specify the location of an HTML control stored in the application repository. See Using the XPath search method, page 2.

Specify the location of an HTML control stored in the application repository. See Using the XPath search method, page 2. Testing Dynamic Web Applications How To You can use XML Path Language (XPath) queries and URL format rules to test web sites or applications that contain dynamic content that changes on a regular basis.

More information

Using EMC Documentum with Adobe LiveCycle ES

Using EMC Documentum with Adobe LiveCycle ES Technical Guide Using EMC Documentum with Adobe LiveCycle ES Table of contents 1 Deployment 3 Managing LiveCycle ES development assets in Documentum 5 Developing LiveCycle applications with contents in

More information

ColdFusion Adwords API Library

ColdFusion Adwords API Library ColdFusion Adwords API Library Documentation- 2011-05-20 The coldfusion adwords api library consists of a set of coldfusion components. Using the components you can access the data behind the google adwords

More information

Process Transaction API

Process Transaction API Process Transaction API Document Version 5.9 March 2011 For further information please contact Beanstream customer support at (250) 472-2326 or support@beanstream.com. BEAN # Page 2 of 90 Date Overview...

More information

Improved Navigation Magento Extension User Guide

Improved Navigation Magento Extension User Guide Improved Navigation Magento Extension User Guide Page 1 Table of contents: 1. Creation of attribute filters and navigation configuration 3 2. Creation of blocks with featured attribute options.. 11 3.

More information

CRM Migration Manager 3.1.1 for Microsoft Dynamics CRM. User Guide

CRM Migration Manager 3.1.1 for Microsoft Dynamics CRM. User Guide CRM Migration Manager 3.1.1 for Microsoft Dynamics CRM User Guide Revision D Issued July 2014 Table of Contents About CRM Migration Manager... 4 System Requirements... 5 Operating Systems... 5 Dynamics

More information

Sophos Mobile Control Administrator guide. Product version: 3.6

Sophos Mobile Control Administrator guide. Product version: 3.6 Sophos Mobile Control Administrator guide Product version: 3.6 Document date: November 2013 Contents 1 About Sophos Mobile Control...4 2 About the Sophos Mobile Control web console...7 3 Key steps for

More information

Web Design Project Center Project Center - How to Login

Web Design Project Center Project Center - How to Login Project Center - How to Login On your computer, locate and open a web browser program such as Firefox or Internet Explorer. In the address bar at the top of your opened web browser program, type in the

More information

for Salesforce CRM INSTALLATION GUIDE February 2011 www.crm.hoovers.com/salesforce

for Salesforce CRM INSTALLATION GUIDE February 2011 www.crm.hoovers.com/salesforce for Salesforce CRM INSTALLATION GUIDE February 2011 www.crm.hoovers.com/salesforce Table of Contents Before You Begin... 3 First Time Installing Access Hoover s... 3 Updating Access Hoover s... 3 Note

More information

Business On Line File Gateway Guide for Customers

Business On Line File Gateway Guide for Customers Business On Line File Gateway Guide for Customers This document is published by Bank of Ireland, and both it, and its contents, are the property of Bank of Ireland. This document may not be reproduced

More information

Order Manager Toolkit

Order Manager Toolkit Order Manager Toolkit Magento Extension User Guide Official extension page: Order Manager Toolkit Page 1 Table of contents: 1. Order Manager Toolkit: functionality on the order grid.. 3 2. Extended grid:

More information

Google Content Extension

Google Content Extension Google Content Extension About Google has launched new Shopping APIs that replaced Google Base Data API for shopping use cases. Google Base Data API was be fully retired on June 1, 2011 and merchants using

More information

www.novell.com/documentation Policy Guide Access Manager 3.1 SP5 January 2013

www.novell.com/documentation Policy Guide Access Manager 3.1 SP5 January 2013 www.novell.com/documentation Policy Guide Access Manager 3.1 SP5 January 2013 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of this documentation,

More information

Workflow Conductor Widgets

Workflow Conductor Widgets Workflow Conductor Widgets Workflow Conductor widgets are the modular building blocks used to create workflows in Workflow Conductor Studio. Some widgets define the flow, or path, of a workflow, and others

More information

Bitcoin Payment Gateway API

Bitcoin Payment Gateway API Bitcoin Payment Gateway API v0.3 BitPay, Inc. https://bitpay.com 2011-2012 BITPAY, Inc. All Rights Reserved. 1 Table of Contents Introduction Activating API Access Invoice States Creating an Invoice Required

More information

[Jet-Magento Integration]

[Jet-Magento Integration] CedCommerce. All rights reserved. SUPPORT@CEDCOMMERCE.COM [Jet-Magento Integration] CedCommerce Jet-Magento Integration, an extension by CedCommerce, establishes synchronization of inventory, price, other

More information

econtrol 3.5 for Active Directory & Exchange Administrator Guide

econtrol 3.5 for Active Directory & Exchange Administrator Guide econtrol 3.5 for Active Directory & Exchange Administrator Guide This Guide Welcome to the econtrol 3.5 for Active Directory and Exchange Administrator Guide. This guide is for system administrators and

More information

AT&T Synaptic Storage as a Service SM Getting Started Guide

AT&T Synaptic Storage as a Service SM Getting Started Guide AT&T Synaptic Storage as a Service SM Getting Started Guide Version 3.0 2011 AT&T Intellectual Property. All rights reserved. AT&T and the AT&T logo are trademarks of AT&T Intellectual Property. All other

More information

E*TRADE Developer Platform. Developer Guide and API Reference. October 24, 2012 API Version: v0

E*TRADE Developer Platform. Developer Guide and API Reference. October 24, 2012 API Version: v0 E*TRADE Developer Platform Developer Guide and API Reference October 24, 2012 API Version: v0 Contents Getting Started... 5 Introduction... 6 Architecture... 6 Authorization... 6 Agreements... 7 Support

More information

vrealize Operations Manager Customization and Administration Guide

vrealize Operations Manager Customization and Administration Guide vrealize Operations Manager Customization and Administration Guide vrealize Operations Manager 6.0.1 This document supports the version of each product listed and supports all subsequent versions until

More information

Installation Guide MAGENTO PAYMENT PLUGIN. release 1.0.1

Installation Guide MAGENTO PAYMENT PLUGIN. release 1.0.1 release 1.0.1 MAGENTO PAYMENT PLUGIN MAXIMUM CONSULT Tel: (+258) 21 903 112 (+258) 84 74 37 30 8 (+258) 82 61 45 471 Email: info@maximumconsult.com Maputo. Mozambique 1 Paguei.Online is the first Mozambican

More information

Work with PassKey Manager

Work with PassKey Manager Work with PassKey Manager Trademark Notice Blackboard, the Blackboard logos, and the unique trade dress of Blackboard are the trademarks, service marks, trade dress and logos of Blackboard, Inc. All other

More information

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide This document is intended to help you get started using WebSpy Vantage Ultimate and the Web Module. For more detailed information, please see

More information

RoomWizard Synchronization Software Manual Installation Instructions

RoomWizard Synchronization Software Manual Installation Instructions 2 RoomWizard Synchronization Software Manual Installation Instructions Table of Contents Exchange Server Configuration... 4 RoomWizard Synchronization Software Installation and Configuration... 5 System

More information

DreamFactory on Microsoft SQL Azure

DreamFactory on Microsoft SQL Azure DreamFactory on Microsoft SQL Azure Account Setup and Installation Guide For general information about the Azure platform, go to http://www.microsoft.com/windowsazure/. For general information about the

More information

Price rules. What this exercise is about... 2. What you should be able to do... 2. Introduction... 2. Requirements... 2

Price rules. What this exercise is about... 2. What you should be able to do... 2. Introduction... 2. Requirements... 2 Copyright IBM Corporation 2011 All rights reserved IBM WebSphere Commerce V7 Feature Pack 2 Lab exercise What this exercise is about... 2 What you should be able to do... 2 Introduction... 2 Requirements...

More information

Salesforce Files Connect Implementation Guide

Salesforce Files Connect Implementation Guide Salesforce Files Connect Implementation Guide Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Coveo Platform 7.0. Salesforce Connector Guide

Coveo Platform 7.0. Salesforce Connector Guide Coveo Platform 7.0 Salesforce Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing market

More information

Virtual Terminal & Online Portal

Virtual Terminal & Online Portal Authipay Gateway Virtual Terminal & Online Portal User Guide Version 5 (EMEA) Virtual Terminal & Online Portal User Guide Version 5 (EMEA) CONTENTS 1 Introduction... 5 2 Processing Transactions... 6 2.1

More information

Commerce Services Documentation

Commerce Services Documentation Commerce Services Documentation This document contains a general feature overview of the Commerce Services resource implementation and lists the currently implemented resources. Each resource conforms

More information

INTEGRATION PROCEDURES AND SPECIFICATIONS

INTEGRATION PROCEDURES AND SPECIFICATIONS ipos Credit Card Payment Gateway INTEGRATION PROCEDURES AND SPECIFICATIONS Revision 7 Contents Contents 2 Introduction 3 ipos the simple online credit card solution 3 The Transaction Flow 4 Security 7

More information

WWW.OFFICEMAXSOLUTIONS.COM Shopping Application Overview

WWW.OFFICEMAXSOLUTIONS.COM Shopping Application Overview WWW.OFFICEMAXSOLUTIONS.COM Shopping Application Overview 1. LOGIN... 3 2. GETTING STARTED WITH MANAGE ORDERS... 3 2.1 Creating an order using Create New Order... 4 2.1. Creating an order using Repeat Orders...

More information

Use Enterprise SSO as the Credential Server for Protected Sites

Use Enterprise SSO as the Credential Server for Protected Sites Webthority HOW TO Use Enterprise SSO as the Credential Server for Protected Sites This document describes how to integrate Webthority with Enterprise SSO version 8.0.2 or 8.0.3. Webthority can be configured

More information

Coveo Platform 7.0. Microsoft Dynamics CRM Connector Guide

Coveo Platform 7.0. Microsoft Dynamics CRM Connector Guide Coveo Platform 7.0 Microsoft Dynamics CRM Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing

More information

Dell KACE K1000 System Management Appliance Version 5.4. Service Desk Administrator Guide

Dell KACE K1000 System Management Appliance Version 5.4. Service Desk Administrator Guide Dell KACE K1000 System Management Appliance Version 5.4 Service Desk Administrator Guide October 2012 2004-2012 Dell Inc. All rights reserved. Reproduction of these materials in any manner whatsoever without

More information

QAD BPM Release Notes

QAD BPM Release Notes September 2014 The release notes include information about the latest QAD BPM fixes and changes. Review this document before proceeding with any phase of a QAD BPM implementation. These release notes are

More information