Checkout by Amazon Widget Reference Guide

Size: px
Start display at page:

Download "Checkout by Amazon Widget Reference Guide"

Transcription

1 Checkout by Amazon Widget Reference Guide

2 2 Checkout by Amazon TOC Contents Overview of This Document... 3 Overview of Checkout by Amazon Inline Checkout... 3 Who Should Read This Document...3 Prerequisites... 3 Code Samples...3 Other Documentation... 3 What's New in This Document...4 Widget Overview... 5 Widget Setup... 5 Common Widget Methods... 5 Common Widget Parameters... 6 Widgets...7 List of Widgets by Function...7 InlineCheckoutWidget Widget Parameters... 8 Widget Methods... 9 Example...9 AddressWidget Widget Parameters Example...11 WalletWidget Widget Parameters Example...14 ExpressCheckoutWidget Widget Parameters Widget Methods Example...16 StandardCheckoutWidget Widget Parameters Widget Methods Example...18 OrderDetailsWidget Widget Parameters Widget Methods Example...22

3 Checkout by Amazon Overview of This Document 3 Overview of This Document Overview of Checkout by Amazon Inline Checkout Welcome to the Checkout by Amazon Inline Checkout Widgets Reference Guide. This section describes who should read this guide, how the guide is organized, and other resources related to Checkout by Amazon. Who Should Read This Document This document gives you the information and steps you need to implement Inline Checkout Widgets on your website. Prerequisites This guide assumes you--or your development staff--are familiar with using HTML and XML in an application development environment. Before you can use Checkout by Amazon Inline Checkout, your systems must meet the following prerequisites: You must be familiar with using web service APIs. You must be familiar with using JavaScript. (There are several required JavaScript code snippets that you must use in your carts to enable Inline Checkout and Express Checkout.) For more information about using the Inline Checkout Widgets, please see the following references: Inline Checkout API Reference Guide Inline Checkout Implementation Guide Code Samples Checkout by Amazon provides code samples to assist you when implementing Inline Checkout. Programming Language Java Download Location SDK Other Documentation You can read our downloadable PDFs to understand more about Checkout by Amazon. More Resources for Checkout by Amazon Resource Getting Started Guide Standard Checkout - Button Creation Wizard Implementation Guide Standard Checkout - HTML Implementation Guide Audience, Purpose, and Goals For merchants who want to use a simple, step-bystep approach in setting up Checkout by Amazon on their websites. The Getting Started Guide walks merchants through the process, from gathering the required information for signing up for an account to setting up a button on their websites. For merchants and developers who want a detailed list of ways to integrate their website with Checkout by Amazon. The Implementation Guide provides the information needed for programming

4 4 Checkout by Amazon Overview of This Document Standard Checkout - XML Implementation Guide Using Seller Central Standard Checkout - Callback API Guide Standard Checkout - Callback API Developers Cheat Sheet Instant Order Processing Notifications Guide Using Custom Data Fields Guide Shopping Cart Guide Best Practices Guide Managing Orders Alternate Payment Method Guide and code development. Note that there are three versions of this document: one for those who just want to paste the button code built using the Create Checkout Button feature in Seller Central, one for HTML-based code, and one for XMLbased code. For merchants who want an overview of Seller Central. For developers who want to build their own applications to calculate shipping and tax rates as well as promotional discounts and then send these results to Checkout by Amazon. For developers who want a quick, 1-page summary of how to enable callbacks. For developers who want to automate order notifications with Amazon Payments. For merchants and developers who want to include custom data fields in their carts. For merchants and developers who want to use the Checkout by Amazon Shopping Cart on their site. Tips for setting up your website to use Amazon Payments, with advice for planning, setting up, and day-to-day operations. A guide to assist you in the day-to-day operations for managing orders generated by Checkout by Amazon. Information on using Checkout by Amazon as an alternate payment method on the payments page of your standard checkout. What's New in This Document Release Date Widget Reference Guide Initial Release

5 Checkout by Amazon Widget Overview 5 Widget Overview Widget Setup To render a widget, copy and paste the code snippet we provide (sample below) on every page where a widget needs to be rendered. Place the div block in the location where you want the widget to show up. <script type='text/javascript' src=' </script> <div id="amazonwidget"></div> <script> new CBA.Widgets.XXXWidget ({ // Widget-specific parameters }).render("amazonwidget"); </script> The widget setup involves 3 steps: 1. Include the PaymentWidgets.js file on your page. If you want to include multiple Checkout by Amazon widgets on the same page, load the external JavaScript file (for example, PaymentsWidget.js) just once. 2. Place a div HTML element where you want the widget to be rendered on your page. Give the div element a unique name. 3. Inside a script block, create an instance of the widget you want to display. URL Domains Used in This Guide Note: Creating an instance of the widget does not automatically make it visible. You must call the render() method of the widget instance when your page is ready to display the widget. The URL domain is specific for country to support internalization (i18n). That is, the JavaScript URL for US is: Please see this table for a list of URLs used for specific locales: Locale US URL PaymentWidgets.js Sandbox Widget To test your integration in the Sandbox environment, replace the JavaScript URL with one of these, depending on your locale: Locale US URL us/sandbox/paymentwidgets.js Common Widget Methods

6 6 Checkout by Amazon Widget Overview Each widget supports following methods: Name render(locationid) string getlocation() string getwidgettype() Renders the widget inline. LocationId is a required input parameter that refers to the identifier of the HTML element (div or span) where the widget needs to be rendered. The locationid must be unique. This returns the associated locationid set by render method. This returns the widget type based on the widget. List of possible values: 'StandardCheckoutWidget', 'ExpressCheckoutWidget', 'InlineCheckoutWidget', 'AddressWidget', 'WalletWidget', 'OrderDetailsWidget' Common Widget Parameters The following parameters are applicable to every widget. The additional parameters applicable to each individual widget are discussed in the corresponding chapters. Required Name Type required merchantid String Your merchant ID is a required parameter to each widget.

7 Checkout by Amazon Widgets 7 Widgets List of Widgets by Function Initiating checkout InlineCheckoutWidget ExpressCheckoutWidget StandardCheckoutWidget Accessing account information AddressWidget WalletWidget Accessing order details OrderDetailsWidget Note: Please read the corresponding Checkout by Amazon Implementation Guides for details of how checkout can be initiated from your website using any of the above widgets.

8 8 Checkout by Amazon InlineCheckoutWidget InlineCheckoutWidget The Inline Checkout widget renders the Checkout with Amazon button that allows your buyers to indicate that they'd like to access their Amazon account information and pay with Amazon Payments during the checkout process. When the Inline Checkout widget is coupled with the Address Book widget and the Wallet widget, you can allow your buyers to complete their checkout on your site. Widget Parameters The following are additional parameters supported by this widget. Please refer to the first chapter for common parameters not listed here explicitly. Table 1: Required Name Type required onauthorize Callback function The JavaScript function to perform when the buyer clicks the Checkout by Amazon button and authenticates himself. Upon successful authentication, this JavaScript function is performed. The widget object is passed as an input parameter to the function. optional purchasecontractid String The unique identifier for the purchase contract created by createpurchasecontract API. If you do not use APIs to create the contract (that is, if you leave this blank), the widget will create a contract. You can access the purchase contract inside the onauthorize callback. optional buttonsettings Object The following is an example button settings: {size:'large', color:'orange', background:'white'} Below are possible values for each button setting property: Size: medium large x-large. Default is large. Color: orange tan. Default is orange. Background: white light dark. Default is white. optional buttontype String The value of this parameter determines what type of button to display. Possible values are "checkout" or "addressbook". The default value is "checkout".

9 Checkout by Amazon InlineCheckoutWidget 9 Required Name Type If the value is set to "checkout", the button label displays the text "Checkout with Amazon". If the value is set to "addressbook", the button label displays the text "Use Amazon Address Book". Widget Methods The following are additional methods supported by this widget. Please refer to the first chapter for common methods not listed here explicitly. Table 2: Name getpurchasecontractid() Returns the purchasecontractid if one exists. If called inside the onauthorize callback, it returns the purchase contract ID that is created after buyer clicks the button and authenticates himself. Example The widget below renders showing the label "Use Amazon Address Book." In this example, after the buyer clicks the button and authenticates the purchase, the widget calls the function associated with the onauthorize parameter. The function then redirects the browser to the next page. <div id="amazoninlinewidget"></div> <script> new CBA.Widgets.InlineCheckoutWidget({ // Replace "AEIOU1234AEIOU" with your own merchantid value merchantid: "AEIOU1234AEIOU", buttontype: "addressbook", onauthorize: function(widget) { window.location = ' + widget.getpurchasecontractid() ; } }).render("amazoninlinewidget") ; </script>

10 10 Checkout by Amazon AddressWidget AddressWidget The Address Book Widget allows your buyers to access their Amazon address book from within your checkout pipeline and select a shipping address. Widget Parameters Table 3: Required Name Data Type optional purchasecontractid String Purchase Contract ID generated by either InlineCheckoutWidget or ExpressCheckoutWidget. If not provided, the widget will assume the one stored in the cookie. optional destinationname String Uniquely identifies each address selected by the buyer. The seller provides the identifier to make sure that it's unique if the seller wants to collect more than one address from the buyer. If no name is supplied, the system uses the name "#default". When using the getpurchasecontract API, you find the selected address associated with this destination name or with "#default" name if none is provided here. optional displaymode String Indicates whether the widget is intended for display only purposes or not. displaymode:read renders the widget and displays the shipping address associated with the purchase contract. This mode requires that the shipping address is already selected and is associated with the purchase contract. This mode is best for use after the buyer selects an address using the Express Checkout widget. displaymode:edit renders the widget with the option to select or change shipping address. This mode does not require that a shipping address is selected and associated with the purchase contract. Possible values are "Read" and "Edit". Default mode is "Edit." optional onaddressselect Callback function JavaScript function to perform after buyer selects an address. The widget object is passed as an input parameter to the function. You can retrieve the selected address using the getpurchasecontract API on the server side.

11 Checkout by Amazon AddressWidget 11 Required Name Data Type optional design Object Amazon Payments will provide pre-defined set of designs. Each design identified by the name attribute has a choice of color themes and valid sizes. Name attribute is optional, and if omitted, the default design corresponding to this widget is used. However, you can still specify a color theme and size applicable to the default design. {name: 'pre-defined name', colortheme: 'pre-defined color theme', size: {width: 'width in pixels', height: 'height in pixels'} } Please note that when you set width and height values, use digits only. Do not append unit measurements such as "px". Note: In the current release, there is only one design and color theme. Therefore, you do not need to specify these attributes. However, you can still customize the width and height of the wallet widget. Below are the allowed width and height values for this widget. Please note that the size restrictions depend on the displaymode value. The default values are used if no width or height is provided. Mode Width (pixels) Height (pixels) Default (pixels) Min Max Min Max displaymode:read (w) x 180 (h) displaymode:edit (w) x 230 (h) Example The widget below allows buyers to see their US-only addresses and select one of them. The selected address is then associated with the destination name "GIFT1". <div id="amazonaddresswidget"></div> <script> new CBA.Widgets.AddressWidget({ // Replace "AEIOU1234AEIOU" with your own merchantid value merchantid: "AEIOU1234AEIOU", destinationname: "GIFT1", displaymode: "Edit", onaddressselect: function(widget) { alert("address selected for " + widget.getpurchasecontractid()); } }).render("amazonaddresswidget");

12 12 Checkout by Amazon AddressWidget </script>

13 Checkout by Amazon WalletWidget 13 WalletWidget The Wallet Widget (also called the Payment Method Widget) allows your buyers to access the payment methods in their Amazon account from within your checkout pipeline and select a payment method for the order. Widget Parameters Table 4: Required Name Data Type optional purchasecontractid String Purchase Contract ID generated by either InlineCheckoutWidget or ExpressCheckoutWidget. If not provided, the widget will assume the one stored in the browser cookie. optional displaymode String Indicates whether the widget is intended for display-only purposes or not. displaymode:read renders the Wallet widget and displays the payment method already associated with the purchase contract. This mode requires that a payment method is selected and is associated with the purchase contract. This mode is best for use after the buyer selects payment using the Express Checkout widget. displaymode:edit renders the Wallet widget with the option to select or change the payment method. This mode does not require that a payment method is selected and associated with the purchase contract. Possible values are "Read" and "Edit". Default mode is "Edit." optional design Object Amazon Payments will provide pre-defined set of designs. Each design identified by the name attribute has a choice of color themes and valid sizes. Name attribute is optional, and if omitted, the default design corresponding to this widget is used. However, you can still specify a color theme and size applicable to the default design. {name: 'pre-defined name', colortheme: 'pre-defined color theme',

14 14 Checkout by Amazon WalletWidget Required Name Data Type optional onpaymentselect Callback function size: {width: 'width in pixels', height: 'height in pixels'} } Please note that when you set width and height values, use digits only. Do not append unit measurements such as "px". JavaScript function to perform after buyer selects a payment method. The widget object is passed as an input parameter to the function. Amazon Payments uses the selected payment method to authorize and charge the buyer. Please note that Amazon Payments does not share the selected payment method with you. Note: In the current release, there is only one design and color theme. Therefore, you do not need to specify these attributes. However, you can still customize the width and height of the wallet widget. Below are the allowed width and height values for this widget. Please note that the size restrictions depend on the displaymode value. The default values are used if no width or height is provided. Mode Width (pixels) Height (pixels) Default (pixels) Min Max Min Max displaymode:read (w) x 180 (h) displaymode:edit (w) x 230 (h) Example In the example below, the Wallet widget renders in the read mode and displays the payment method already associated with the purchase contract. The widget size is 200 pixels wide and 300 pixels high. <div id="amazonwalletwidget"></div> <script> new CBA.Widgets.WalletWidget({ // Replace "AEIOU1234AEIOU" with your own merchantid value merchantid: "AEIOU1234AEIOU", purchasecontractid: "abcdefg", displaymode: "Read", design: {size: {width: '200', height: '300'}} } ).render("amazonwalletwidget"); </script>

15 Checkout by Amazon ExpressCheckoutWidget 15 ExpressCheckoutWidget The Express Checkout Widget provides an alternate way for your buyers to initiate their checkout with Amazon. With the Express Checkout Widget, the buyer can select an address and payment within a pop-up window hosted by Amazon Payments before entering your checkout pipeline. By contrast, with Inline Checkout Widget the buyer gets a chance to select an address only inside your checkout pipeline using the Address Book Widget. Both the Inline Checkout Widget and the Express Checkout Widget allow your buyers to complete checkout on your website. Both leverage the Address Book Widget and Wallet widget integrated within your checkout pipeline. The key difference is the buyer experience. Widget Parameters Table 5: Required Name Type required onauthorize Callback function optional onopen Callback function The JavaScript function to perform when the buyer authorizes a shipping address and payment. After the buyer clicks the Checkout by Amazon button, he is prompted to select an address and payment. Upon confirming the selection, this JavaScript function is performed. The widget object is passed as an input parameter to the function. JavaScript function to perform when the Express Checkout window opens after buyer clicks the Checkout with Amazon button. The code is performed before buyer is prompted for an address and payment inside the pop-up window. The widget object is passed as an input parameter to the function. You are expected to invoke a submit method on the widget object whenever you choose to add such a callback function. Only after you invoke the submit method will the buyer be able to select an address and a payment method. optional buttonsettings Object The following is an example button settings: {size:'large', color:'orange', background:'white'} Below are possible values for each button setting property: Size: medium large x-large. Default is large.

16 16 Checkout by Amazon ExpressCheckoutWidget Required Name Type Color: orange tan. Default is orange. Background: white light dark. Default is white. optional purchasecontractid String The unique identifier for the purchase contract created by the V2 API (see the Inline Checkout API Reference Guide for more information). If the purchase contract ID provided here, then the widget updates that purchase contract ID when the buyer selects an address and payment method. If you leave this blank, the widget creates a contract. You can access the purchase contract inside the onauthorize callback. Widget Methods Table 6: Name getpurchasecontractid() submit() Returns the purchasecontractid if one exists. If the function is called inside the onauthorize callback, the function returns the purchase contract ID created after buyer confirms the address and payment in the pop-up window. If you associate a function with the onopen parameter, the buyer can select an address and payment only after you call the submit() method. Example Simple use case; after selecting an address and payment method, the buyer is redirected to the location set in the onauthorize callback function: <div id="amazonexpresswidget"></div> <script> new CBA.Widgets.ExpressCheckoutWidget({ // Replace "AEIOU1234AEIOU" with your own merchantid value merchantid: "AEIOU1234AEIOU", onauthorize: function(widget) { window.location = ' + widget.getpurchasecontractid();} }).render("amazonexpresswidget"); </script>

17 Checkout by Amazon StandardCheckoutWidget 17 StandardCheckoutWidget The Standard Checkout widget renders the Checkout with Amazon button which allows your buyers to place instant orders from a pop-up window hosted by Amazon Payments. Please refer to the XML and HTML Implementation Guides for details on integrating the standard Checkout by Amazon product on your website. Widget Parameters The following are additional parameters supported by this widget. Please refer to the first chapter for common parameters not listed here explicitly. Table 7: Required Name Type conditional orderinput Object orderinput has 2 properties: {format: "HTML", value: "formid"} The format field must have one of two values, "HTML" or "XML". The format identifies how order input is supplied. If the format field is set to "HTML," then the value field must have the ID of the form element which contains the HTML cart. Please refer to the HTML Implementation Guide on how to create the form element. If the format field is set to "XML," then the value field must have the base64-encoded cart XML string (signed or unsigned). Please refer to the XML Implementation Guide for instructions on encoding strings. The orderinput parameter can be set after the widget is initialized and rendered. However, it must be available before the buyer can see the cart details. optional onopen Callback function JavaScript function to perform when the Express Checkout window opens after buyer clicks the Checkout with Amazon button. The code is performed before buyer is prompted for an address and payment inside the pop-up window. The widget object is passed as an input parameter to the function. You are expected to invoke a submit method on the widget object whenever you choose to add such a callback function.

18 18 Checkout by Amazon StandardCheckoutWidget Required Name Type Only after you invoke the submit method will the buyer be able to select an address and a payment method. optional buttonsettings Object The following is an example button settings: {size:'large', color:'orange', background:'white'} Below are possible values for each button setting property: Size: medium large x-large. Default is large. Color: orange tan. Default is orange. Background: white light dark. Default is white. optional cartorigin String The default value is "CartPage". If the value is set to "DetailPage", then orders placed using PayPhrase will consolidate. Possible values are CartPage and DetailPage. Widget Methods The following are additional methods supported by this widget. Please refer to the first chapter for common methods not listed here explicitly. Table 8: Name updateorderinput(orderinput) submit() Use this method to update the orderinput parameter after you initialize the widget. This method is used mostly when a JavaScript function is associated with the onopen parameter. If you associated a function with the onopen parameter, the buyer can select an address and payment only after you call the submit() method. Example Below is a simple use of the widget with an XML cart. The button will use these default settings: {size:'large',color:'orange',background:'white'}. <div id="cbabutton"></div> <script> new CBA.Widgets.StandardCheckoutWidget({ merchantid: "AEIOU1234AEIOU", orderinput: {format: "XML", value: "type:merchant-signed-order/awsaccess-key/1; order:pd94bwwgdmvyc2lvbj0nms4wjyblbmnvzgluzz0nvvrgl TgnPz48T3JkZXIgeG1sbnM9J2h0dHA6Ly9wYXltZW50cy5hbWF6

19 Checkout by Amazon StandardCheckoutWidget 19 b24uy29tl2nozwnrb3v0lziwmdgtmtetmzavjz48q2fydd48sxr lbxm+pel0zw0+pfnlvt5bqkmxmjm8l1nlvt48twvyy2hhbnrjzd 5BMUVKTjJKSUcxMEs2NzwvTWVyY2hhbnRJZD48VGl0bGU+UmVkI EZpc2g8L1RpdGxlPjxQcmljZT48QW1vdW50PjE5Ljk5PC9BbW91 bnq+pen1cnjlbmn5q29kzt5vu0q8l0n1cnjlbmn5q29kzt48l1b yawnlpjxrdwfudgl0et4xpc9rdwfudgl0et48rnvszmlsbg1lbn ROZXR3b3JrPk1FUkNIQU5UPC9GdWxmaWxsbWVudE5ldHdvcms+P C9JdGVtPjwvSXRlbXM+PC9DYXJ0PjwvT3JkZXI+; signature:0nppbxtktfov80kh41gk7ruuhq8=; aws-access-keyid:19g7e7x2qe2v45letx2e"} }).render("cbabutton"); </script> Below is another simple use of the widget with an HTML cart. Notice how the ID of the form element is used inside the orderinput parameter. The button will be x-large, tan, with a dark background. <!-- Form fields that describe Cart --> <form id="cbacartformid"> <input name="item_merchant_id_1" value="aeiou1234aeiou" type="hidden" /> <input name="item_sku_1" value="abc123" type="hidden" /> <input name="item_title_1" value="red Fish" type="hidden" /> <input name="item_price_1" value="19.99"type="hidden" /> <input name="item_quantity_1" value="1" type="hidden" /> <input name="currency_code" value="usd" type="hidden" /> <input name="merchant_signature" value="c2lnbmf0dxjligzvcibdagvja291dcbiesbbbwf6b24" type="hidden" /> <input name="aws_access_key_id" value="19g7e7x2qe2v45letx2e" type="hidden" / > </form> <div id="cbabutton"></div> <script> new CBA.Widgets.StandardCheckoutWidget({ merchantid: "AEIOU1234AEIOU", buttonsettings: {size:'x-large',color:'tan',background:'dark'}, orderinput: {format: "HTML", value: "CBACartFormId"} }).render("cbabutton"); </script> Below is an advanced example where orderinput is set dynamically when buyer clicks the button. In this example, the order input string is not readily available when page loads. Instead, you use AJAX to communicate with your backend process to receive the encoded and signed order input string on demand after page loads. Notice how the submit() method is called after an AJAX response is received. The example below uses JQuery to implement the AJAX call. <div id="cbabutton"></div> <script> new CBA.Widgets.StandardCheckoutWidget({ merchantid: AEIOU1234AEIOU, buttonsettings: {background:'light'}, onopen: function() { $.ajax({ url: 'ajax/test.html', complete: function(data) { // Initialize orderinputstring variable with a string that represents // the encoded cart xml with the signature appended to it. // You will extract that string from the AJAX response before // initializing orderinputstring variable. // (see XML Implementation Guide for steps to construct the string) // Then set the orderinput parameter and call submit() method // to signal the widget to display order details

20 20 Checkout by Amazon StandardCheckoutWidget as } }); // Notice that the input to the updateorderinput() method is same // the widget parameter: orderinput. this.updateorderinput({format: "XML", value: orderinputstring}); this.submit(); } }).render("cbabutton"); </script>

21 Checkout by Amazon OrderDetailsWidget 21 OrderDetailsWidget The Order Details Widget allows Amazon customers to see the details of a given Checkout by Amazon order on the merchant's site. Widget Parameters Table 9: Required Name Data Type required orderid String Amazon Payments Order ID. optional design Object This input parameter is applicable only when render() method is called. When the open() method is used, this parameter input is ignored. Amazon Payments will provide pre-defined set of designs. Each design identified by the name attribute has a choice of color themes and valid sizes. Name attribute is optional, and if omitted, the default design corresponding to this widget is used. However, you can still specify a color theme and size applicable to the default design. {name: 'pre-defined name', colortheme: 'pre-defined color theme', size: {width: 'width in pixels', height: 'height in pixels'} } Please note that when you set width and height values, use digits only. Do not append unit measurements such as "px". Widget Methods The following table lists the special methods supported by the OrderDetailsWidget in addition to the common methods supported by all widgets. Table 10: Name Data Type open(top, left) function Opens widget inside a light box at the specified position. Seller can use this method instead of the render method to display order details in a modal dialog window when the buyer clicks a link or button. The top and left positions can be specified in pixels or as

22 22 Checkout by Amazon OrderDetailsWidget Name Data Type a percentage relative to the browser window. Both the top and left parameters are required. Note: You can also use the render() method (see Common Widget Methods in this document. Size Specification If you use the open() method of the OrderDetailsWidget, the pop-up window will be 422 pixels wide and 340 pixels high. Please note that if you decide to use the open() method, you cannot configure the size of the pop-up window. If you use the render() method of the OrderDetailsWidget, you can also specify the width and height of the box that will display the order summary. You can configure the size as part of the design input parameter. The table below lists the available ranges and the default size. Width (pixels) Height (pixels) Default (pixels) Min Max Min Max (w) x 310 (h) Example To display the order details on clicking a link, use this example. The widget will open at pos-x = 554px and pos-y = 230px: <p>your Amazon Payments Order ID is <a href="#" onclick="orderdetailswidget.open('230px', '554px');"> </a>.</p> <script> var orderdetailswidget = new CBA.Widgets.OrderDetailsWidget({ // Replace "AEIOU1234AEIOU" with your own merchantid value merchantid: "AEIOU1234AEIOU", orderid: ' ' }); </script> To display the order detail on part of the page layout, use this example. Note that in this example, the OrderDetailsWidget, when rendered, will display the details of this order when the page loads. <div id="amazonorderdetail"></div> <script> new CBA.Widgets.OrderDetailsWidget ({ // Replace "AEIOU9999AEIOU" with your own merchantid value merchantid: "AEIOU9999AEIOU", orderid: " " }).render ("amazonorderdetail"); </script>

Checkout by Amazon Widget Reference Guide - Inline Checkout

Checkout by Amazon Widget Reference Guide - Inline Checkout Checkout by Amazon Widget Reference Guide - Inline Checkout 2 Checkout by Amazon TOC Contents Overview of Checkout by Amazon Inline Standard Checkout... 3 Who Should Read This Document...3 Prerequisites...

More information

Checkout by Amazon Widget Reference Guide - Inline Checkout

Checkout by Amazon Widget Reference Guide - Inline Checkout Checkout by Amazon Widget Reference Guide - Inline Checkout TOC 2 Contents Overview of This Document... 3 Overview of Checkout by Amazon Inline Checkout... 3 Who Should Read This Document...3 Prerequisites...

More information

Checkout by Amazon Widget Reference Guide - Standard Checkout

Checkout by Amazon Widget Reference Guide - Standard Checkout Checkout by Amazon Widget Reference Guide - Standard Checkout 2 TOC Contents Overview of Checkout by Amazon Standard Checkout... 3 Who Should Read This Document...3 Prerequisites... 3 Code Samples...3

More information

Inline Checkout Implementation Guide

Inline Checkout Implementation Guide Inline Checkout Implementation Guide TOC 2 Contents Overview of This Document... 3 Standard Checkout Amazon Overview of Checkout by Checkout Overview of Inline Amazon Checkout by Overview of Who Should

More information

Inline Checkout Implementation Guide

Inline Checkout Implementation Guide Inline Checkout Implementation Guide 2 Checkout by Amazon TOC Contents Overview of This Document... 3 Overview of Checkout by Amazon Inline Standard Checkout... 3 Who Should Read This Document...3 Prerequisites...

More information

Standard Checkout. HTML Implementation Guide. U.K. Version

Standard Checkout. HTML Implementation Guide. U.K. Version Standard Checkout HTML Implementation Guide U.K. Version 2013-09-05 Contents 3 Contents List of Tables... 5 Overview of Checkout by Amazon... 7 Who Should Read This Document... 7 Prerequisites... 7 Your

More information

Standard Checkout. XML Implementation Guide. U.K. Version

Standard Checkout. XML Implementation Guide. U.K. Version Standard Checkout XML Implementation Guide U.K. Version 2013-09-05 Contents 3 Contents List of Tables.. 5 Overview of Checkout by Amazon.. 7 Who Should Read This Document. 7 Prerequisites. 7 Your Tasks

More information

Pay with Amazon Express Integration Guide

Pay with Amazon Express Integration Guide Pay with Amazon Express Integration Guide Pay with Amazon Express Integration Guide Copyright 2014-2015 Amazon.com, Inc. or its affiliates. AMAZON, AMAZON PAYMENTS, and AMAZON.COM are registered trademarks

More information

The Callback API Guide v

The Callback API Guide v This document supports the NS of 2008-11-30 only. If you are using the NS of 2009-05-15 or later, please download and read the updated Callback API Guide (pdf). The Callback API Guide v 2008.11.30 A reference

More information

Login and Pay with Amazon - extension for Magento

Login and Pay with Amazon - extension for Magento Login and Pay with Amazon - extension for Magento Release 1.6.4 Marek Zabrowarny Oct 09, 2017 Contents 1 Overview 3 1.1 Extension features............................................ 3 1.2 Getting the

More information

Login and Pay with Amazon - extension for Magento

Login and Pay with Amazon - extension for Magento Login and Pay with Amazon - extension for Magento Release 1.6.4 Marek Zabrowarny Sep 27, 2017 Contents 1 Overview 3 1.1 Extension features............................................ 3 1.2 Getting the

More information

Event Scheduling System 4.0 User Guide

Event Scheduling System 4.0 User Guide This document was produced by Voloper Creations Inc. 2000 2009 Voloper Creations Inc. All Rights Reserved Brands or product names are trademarks or registered trademarks of their respective holders. The

More information

Amazon Pay (EU and UK) - extension for Magento 1.x

Amazon Pay (EU and UK) - extension for Magento 1.x Amazon Pay (EU and UK) - extension for Magento 1.x Release 2.0.0 Marek Zabrowarny Oct 17, 2017 CONTENTS 1 Overview 3 1.1 Extension features............................................ 3 1.2 Getting the

More information

KonaKart Shopping Widgets. 3rd January DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK

KonaKart Shopping Widgets. 3rd January DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK KonaKart Shopping Widgets 3rd January 2018 DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK Introduction KonaKart ( www.konakart.com ) is a Java based ecommerce platform

More information

PayPal Home Support Search PayPal Developer Central Search. Developer Home Partner Solutions How to Library Training Community

PayPal Home Support Search PayPal Developer Central Search. Developer Home Partner Solutions How to Library Training Community 1 of 16 1/5/2011 3:56 PM PayPal Home Support Search PayPal Developer Central Search Developer Home Partner Solutions How to Library Training Community Integration Overview HTML Overview Website Payments

More information

WebStore by Amazon: Quick Start Guide

WebStore by Amazon: Quick Start Guide WebStore by Amazon: Quick Start Guide Introduction to WebStore by Amazon WebStore by Amazon is a powerful tool that allows you to create a complete e- commerce site. The WebStore by Amazon setup wizard

More information

Sparrow Client (Front-end) API

Sparrow Client (Front-end) API Sparrow Client (Front-end) API Service API Version 3.6.0 (Build 8062) Released May 2017 Revision History Date Revision Comments Author 2017-05-22 1.0 Initial document Ilya Tretyakov 2 Table of Contents

More information

The Callback API Guide

The Callback API Guide The Callback API Guide A reference guide for developers who want to calculate their own shipping or promotional discounts for their Checkout by Amazon orders. 2009-11 Amazon.com, Inc. or its Affiliates

More information

Best Practices Guide for Payments. Android August 2018

Best Practices Guide for Payments. Android August 2018 Best Practices Guide for Payments Android August 2018 Contents 3 Overview 4-5 Google Pay Payment Button: Do s & Don ts 5 Examples 6-7 Google Pay Logo & Mark: Do s & Don ts 7 Examples 8-9 Using Google Pay

More information

Setting up your TouchNet Marketplace ustore

Setting up your TouchNet Marketplace ustore Setting up your TouchNet Marketplace ustore Topics Covered: Logging into TouchNet Accessing your store Email Messages Single Store Settings Store Template Settings Users Categories Products including Options

More information

Steps A. Identify version number B. Access configuration page C. Basic settings D. Advance settings E. Front end experience settings F.

Steps A. Identify version number B. Access configuration page C. Basic settings D. Advance settings E. Front end experience settings F. ! Steps A. Identify version number B. Access configuration page C. Basic settings D. Advance settings E. Front end experience settings F. Save and complete! A. Identify version number A.1. Log in to Admin

More information

Figure 1 Forms category in the Insert panel. You set up a form by inserting it and configuring options through the Properties panel.

Figure 1 Forms category in the Insert panel. You set up a form by inserting it and configuring options through the Properties panel. Adobe Dreamweaver CS6 Project 3 guide How to create forms You can use forms to interact with or gather information from site visitors. With forms, visitors can provide feedback, sign a guest book, take

More information

Sliding PayPal Shopping Cart 2 DMXzone

Sliding PayPal Shopping Cart 2 DMXzone Table of contents Table of contents... 1 About Sliding PayPal Shopping Cart 2... 2 Features in Detail... 3 The Basics: Use Sliding PayPal Shopping Cart 2 on your Page... 21 Advanced: Different Options

More information

Kurant StoreSense Quick Start Guide

Kurant StoreSense Quick Start Guide Kurant StoreSense Quick Start Guide Version 5.7.0 2004 Kurant Corporation. Kurant, StoreSense, and the Kurant logo are trademarks of Kurant. All other products mentioned are trademarks of their respective

More information

System and Software Architecture Description (SSAD)

System and Software Architecture Description (SSAD) System and Software Architecture Description (SSAD) FlowerSeeker Team 05 Name Eder Figueroa Sophia Wu Doris Lam Hiram Garcia Roles Primary Role: Project Manager/ Implementer. Secondary Role: Tester. Primary

More information

PayPal Express Checkout Services

PayPal Express Checkout Services Title Page PayPal Express Checkout s Using the Simple Order API May 2017 CyberSource Corporation HQ P.O. Box 8999 San Francisco, CA 94128-8999 Phone: 800-530-9095 CyberSource Contact Information For general

More information

PHPBasket 4 Administrator Documentation

PHPBasket 4 Administrator Documentation PHPBasket 4 Please ensure you have the latest version of this document from http://www.phpbasket.com Contents CONTENTS 2 REQUIREMENTS 3 INSTALLATION 4 PREPARATION 4 UPLOAD 4 INSTALLATION 4 ADMINISTRATOR

More information

IM Cloud Marketplace. Cloud Store Guide

IM Cloud Marketplace. Cloud Store Guide IM Cloud Marketplace Cloud Store Guide Contents Preface... 7 Documentation Conventions... 7 Typographical Conventions... 7 General Conventions... 8 Feedback... 8 Introduction... 9 System Requirements...

More information

Schenker AB. Interface documentation Map integration

Schenker AB. Interface documentation Map integration Schenker AB Interface documentation Map integration Index 1 General information... 1 1.1 Getting started...1 1.2 Authentication...1 2 Website Map... 2 2.1 Information...2 2.2 Methods...2 2.3 Parameters...2

More information

Reference Cart and One Page Checkout BETA February 3, 2014 Version 2014 Release 1

Reference Cart and One Page Checkout BETA February 3, 2014 Version 2014 Release 1 Reference Cart and One Page Checkout BETA February 3, 2014 Version 2014 Release 1 Copyright NetSuite, Inc. 2009 2013 All rights reserved. This document is the property of NetSuite, Inc., and may not be

More information

Online Stores. STRONGVON Tournament Management System

Online Stores. STRONGVON Tournament Management System Online Stores STRONGVON Tournament Management System 1 Overview An online store on the STRONGVON Tournament Management System is part of the event website where your potential registrants can purchase

More information

Quick Online Shop Documentation

Quick Online Shop Documentation Quick Online Shop Documentation In the following tutorial, you will get a complete step by step guide of using Quick Online Shop WordPress theme for building an amazon affiliate store site. All steps have

More information

ecommerce Features Ability to control the width and height of suggested items on viewitem page. Can now limit the field length on a PDF template.

ecommerce Features Ability to control the width and height of suggested items on viewitem page. Can now limit the field length on a PDF template. ASI Computer Systems announces a Major Release for ecommerce with the release of! Ability to control the width and height of suggested items on viewitem page. Added NPC/Skipjack as a payment processor

More information

Pre-Order Payment Gateway Extension

Pre-Order Payment Gateway Extension Pre-Order Payment Gateway Extension Prestashop Extension User Guide Page 1 1. How to Install Table of contents: 1. How to Install....3 2. General Settings...5 3. Use as Payment option.....8 4. Backorder

More information

Promote your ebay Business

Promote your ebay Business Promote your ebay Business Promote your ebay Listings About Me Affiliate Program Promote your Listings You can increase your items visibility by promoting your images, highlighting your listings, or featuring

More information

OKPAY guides INTEGRATION OVERVIEW

OKPAY guides INTEGRATION OVERVIEW Название раздела OKPAY guides www.okpay.com INTEGRATION OVERVIEW 2012 Contents INTEGRATION OVERVIEW GUIDE Contents 1. Payment System Integration 2. OKPAY Integration Types 2.1. Basic Payment Links and

More information

ecorner Stores Plus CloudShops

ecorner Stores Plus CloudShops ecorner Stores Plus CloudShops Quick Start Guide ecorner Pty Ltd Australia Free Call: 1800 033 845 New Zealand: 0800 501 017 International: +61 2 9494 0200 Email: info@ecorner.com.au The information contained

More information

Steps for Completing a Download Transaction on the estore and Downloading your Product Update

Steps for Completing a Download Transaction on the estore and Downloading your Product Update Steps for Completing a Download Transaction on the estore and Downloading your Product Update Once you have received a Technical Bulletin of Release Availability, follow these instructions carefully to

More information

Affiliate Guide. Version Jan 2017

Affiliate Guide. Version Jan 2017 Website: http://magehit.com Contact: sale@magehit.com Affiliate Guide Version 4.0.5 - Jan 2017 Configuration Go to System >> Configurations >> MageHit >> Affiliate Pro (or Affiliate Pro >> Configuration)

More information

API GUIDELINES DRAFT

API GUIDELINES DRAFT API GUIDELINES DRAFT..05 API GUIDELINES TABLE OF CONTENTS API Introduction 3 Tracking via SMS Tracking - Real time Requirements 4 Messaging & Usage 5 Implementing for Mobile 3 Introduction 6 Overview 4

More information

Connecting VirtueMart To PayPal (Live)

Connecting VirtueMart To PayPal (Live) Connecting VirtueMart To PayPal (Live) After testing is complete in the PayPal Sandbox and you are satisfied all is well, then its time to disconnect VirtueMart from the PayPal Sandbox and connect Virtuemart

More information

Set Your ebay Token. 1. Log into your Vendio Account and select the Preferences link on the right. 2. Choose the Preferences page for Channels.

Set Your ebay Token. 1. Log into your Vendio Account and select the Preferences link on the right. 2. Choose the Preferences page for Channels. Vendio welcomes all our new members coming from Auctiva. We ve created this step-by-step quick start guide for sellers coming from Auctiva to help you get started quickly and efficiently on the Vendio

More information

CyberSource Global Payment Management for Magento 2

CyberSource Global Payment Management for Magento 2 CyberSource Global Payment Management for Magento 2 User s Guide Version 3.0.0 July 2018 July 2018 CyberSource Global Payment Management for Magento 2.x 1 Table of Contents Recent Changes.....5 1. Introduction...

More information

Global Access. User Guide. March Copyright 2015 UPS

Global Access. User Guide. March Copyright 2015 UPS Global Access User Guide March 2015 Copyright 2015 UPS Table of Contents Introduction... 4 1.1 Purpose of this User Guide... 4 1.2 Global Access Platform... 4 1.3 Account Management Dashboard... 5 1.4

More information

eshop Installation and Data Setup Guide for Microsoft Dynamics 365 Business Central

eshop Installation and Data Setup Guide for Microsoft Dynamics 365 Business Central eshop Installation and Data Setup Guide for Microsoft Dynamics 365 Business Central Table of Contents Installation Guide... 3 eshop Account Registration in Dynamics 365 Business Central:... 3 eshop Setup

More information

First-time users select Register here

First-time users select Register here First-time users select Register here Type the first letter of your district name and select the appropriate district or entity. Enter your DISTRICT EMAIL ADDRESS (email addresses must match the @districtname.kyschools.us

More information

WELCOME to Qantas Group isupplier

WELCOME to Qantas Group isupplier WELCOME to Qantas Group isupplier A manual for suppliers Welcome to our isupplier help manual. You re receiving this manual as you are one of our preferred suppliers with access to the isupplier Portal.

More information

PayPal PLUS integration. Let our handbook be the fast track to achieve your business goals.

PayPal PLUS integration. Let our handbook be the fast track to achieve your business goals. PayPal PLUS integration Let our handbook be the fast track to achieve your business goals. Content Introduction 3 Change History 3 Using the PayPal API 4 Architecture 4 PayPal Sandbox 4 API endpoints 4

More information

PLR-MRR-Products.com 1

PLR-MRR-Products.com 1 PLR-MRR-Products.com 1 You may give away this ebook. It may not be modified in any manner. Brought to You by PLR-MRR-Products.com Disclaimer Reasonable care has been taken to ensure that the information

More information

System and Software Architecture Description (SSAD)

System and Software Architecture Description (SSAD) System and Software Architecture Description (SSAD) FlowerSeeker Team 05 Name Eder Figueroa Sophia Wu Doris Lam Hiram Garcia Roles Primary Role: Project Manager/ Implementer. Secondary Role: Tester. Primary

More information

OVERVIEW OF ONLINE TRANSACTION FLOW

OVERVIEW OF ONLINE TRANSACTION FLOW OVERVIEW OF ONLINE TRANSACTION FLOW POSSIBLE PROBLEMS FACED BY ONLINE SHOPPER USING CREDIT CARD FOR PAYMENT Scenario Stage Reasons Payment Status in ipay88 Report 1 I. Internet connection Online shopper

More information

JavaScript By: A. Mousavi & P. Broomhead SERG, School of Engineering Design, Brunel University, UK

JavaScript By: A. Mousavi & P. Broomhead SERG, School of Engineering Design, Brunel University, UK Programming for Digital Media EE1707 JavaScript By: A. Mousavi & P. Broomhead SERG, School of Engineering Design, Brunel University, UK 1 References and Sources 1. Javascript & JQuery: interactive front-end

More information

General Settings General Settings Settings

General Settings General Settings Settings Contents General Settings... 3 Payment Methods... 31 Currency Management... 35 Sales Tax... 37 Commission Settings... 40 Affiliate Commission Settings... 43 Email Templates Management... 46 Subscription

More information

Affiliate Program. Powered by. What you will find in this Advertiser Checklist: The Advertiser Checklist

Affiliate Program. Powered by. What you will find in this Advertiser Checklist: The Advertiser Checklist Affiliate Program Powered by What you will find in this Advertiser Checklist: Action plan for getting started Details outlining the 5 steps necessary for setting up your account Help Center information

More information

As part of our commitment to continuously updating and enhancing our fundraising system, we are thrilled to announce our latest enhancements.

As part of our commitment to continuously updating and enhancing our fundraising system, we are thrilled to announce our latest enhancements. As part of our commitment to continuously updating and enhancing our fundraising system, we are thrilled to announce our latest enhancements. Purchase Items during Registration Administrators can now enable

More information

Merchant Tracking Code Guide

Merchant Tracking Code Guide Merchant Tracking Code Guide October 2008 Contents 1. Introduction... 3 2. Data Protection Act... 4 3. Activation... 5 4. All pages... 5 5. Which tracking code should I use?... 6 6. Standard Tracking Integration...

More information

User Guide Mobile Point-of-Sale (mpos), Version 2.0

User Guide Mobile Point-of-Sale (mpos), Version 2.0 User Guide Mobile Point-of-Sale (mpos), Version 2.0 Contents Overview... 1 Features... 1 Getting Started... 2 Login... 3 First Time Login/Password Reset... 3 Setting Security Questions... 4 Password Expiring...

More information

Getting Started with. InSpiredByYou.com COPYRIGHT STUDIOPLUS SOFTWARE, LLC ALL RIGHTS RESERVED

Getting Started with. InSpiredByYou.com COPYRIGHT STUDIOPLUS SOFTWARE, LLC ALL RIGHTS RESERVED Getting Started with InSpiredByYou.com COPYRIGHT 1998-2013 STUDIOPLUS SOFTWARE, LLC ALL RIGHTS RESERVED i Getting Started with InSpiredByYou Table of Contents Setting Up InSpiredByYou... 3 Set Up an InSpiredByYou

More information

Reference Guide For Purchasers And Approvers.

Reference Guide For Purchasers And Approvers. Reference Guide For Purchasers And Approvers www.grandandtoy.com Table Of Contents Sign in 3 Selecting an Account 4 Order Details Main Order Page 5 Order Details Adding to an Order 6 Order Details Changing

More information

SPECIFICATIONS Insert Client Name

SPECIFICATIONS Insert Client Name ESSENTIAL LMS BRANDING SPECIFICATIONS Insert Client Name Creation Date: June 23, 2011 Last Updated: July 11, 2017 Version: 16.5 Page 1 Contents Branding Elements... 3 Theme Management... 3 Header Images...

More information

InstantSearch+ Documentation for Shopify

InstantSearch+ Documentation for Shopify InstantSearch+ Documentation for Shopify Contents Overview...2 Top Menu...2 Support...2 Dashboard Tabs...3 Analytics...3 AutoComplete...8 Search Results Page (SERP)... 12 Merchandising... 16 Synonyms...

More information

Taxpayer Enhancements:

Taxpayer Enhancements: Taxpayer Enhancements: 1. Authentication for Business Returns and K-1 Distribution: To enhance security for business returns and K-1 distribution, we have removed the need for the recipients to enter the

More information

HOW TO INTEGRATE A PAYPAL BUTTON INTO YOUR WEBSITE

HOW TO INTEGRATE A PAYPAL BUTTON INTO YOUR WEBSITE 1 HOW TO INTEGRATE A PAYPAL BUTTON INTO YOUR WEBSITE (c ) Laycock Publishing Limited You have full distribution rights to this publication, provided that it remains unaltered in any way whatsoever, and

More information

Version 1.1. Mobile Optimisation

Version 1.1. Mobile Optimisation Version 1.1 1 Table Of contents 1. Introduction. Page 3 1.1. SmartPay mobile payment pages... Page 3 1.2. A simple and straight forward Multi page..page 3 2. How to integrate...page 4 2.1. Option 1: native

More information

Masterpass Service Provider Onboarding and Integration Guide Merchant by Merchant Model U.S. Version 6.18

Masterpass Service Provider Onboarding and Integration Guide Merchant by Merchant Model U.S. Version 6.18 Masterpass Service Provider Onboarding and Integration Guide Merchant by Merchant Model U.S. Version 6.18 30 September 2016 SPMM Summary of Changes, 30 September 2016 Summary of Changes, 30 September 2016

More information

Oracle CPQ Cloud. What s New in 2015 R2

Oracle CPQ Cloud. What s New in 2015 R2 Oracle CPQ Cloud What s New in 2015 R2 December 2015 Revised: February 2016 TABLE OF CONTENTS REVISION HISTORY... 4 OVERVIEW... 5 RELEASE FEATURE SUMMARY... 6 EASY ADMINISTRATION... 7 Single Select Pick

More information

Extra Fee for Magento 2

Extra Fee for Magento 2 Extra Fee for Magento 2 Magento 2 Extension User Guide Official extension page: Extra Fee for Magento 2 Page 1 Table of contents: 1. General settings.....3 2. Extra Fees Creation.....5 3. Condition Settings...11

More information

GETTING STARTED GUIDE

GETTING STARTED GUIDE GETTING STARTED GUIDE Contents ebay Listing Formats Supported... 2 3 ways to get started... 2 1) Importing existing ebay listings... 2 2) Importing product spreadsheet into Xpress Lister... 4 Important

More information

ONE STEP CHECKOUT. USER GUIDE for Magento 2.0. Version

ONE STEP CHECKOUT. USER GUIDE for Magento 2.0. Version support@magestore.com sales@magestore.com +1-415-954-7137 ONE STEP CHECKOUT USER GUIDE for Magento 2.0 Version 1.0 One step checkout v1.0 User Guide for Magento 2.0 1 Table of Contents 1. INTRODUCTION

More information

Requester Quick Reference

Requester Quick Reference Accessing BearBuy 1. Log into MyAccess and select the BearBuy link. a. By default, you will be directed to the Shopping Homepage, unless you set your homepage to a different BearBuy page. b. If you are

More information

Incarcerated Student Online Ordering Procedures INTRODUCTION

Incarcerated Student Online Ordering Procedures INTRODUCTION INTRODUCTION This ordering guide gives step by step instructions on placing online orders for purchasing required and recommended materials for Incarcerated students enrolled in the Distance Learning Program.

More information

Webshop Plus! v Pablo Software Solutions DB Technosystems

Webshop Plus! v Pablo Software Solutions DB Technosystems Webshop Plus! v.2.0 2009 Pablo Software Solutions http://www.wysiwygwebbuilder.com 2009 DB Technosystems http://www.dbtechnosystems.com Webshos Plus! V.2. is an evolution of the original webshop script

More information

Gift Card Magento Extension User Guide Official extension page: Gift Card

Gift Card Magento Extension User Guide Official extension page: Gift Card Gift Card Magento Extension User Guide Official extension page: Gift Card Page 1 Table of contents: 1. General Settings...3 2. Product Creation........7 3. Product Price Settings......8 4. Gift Card Information

More information

Manual Html A Href Javascript Window Open New Browser

Manual Html A Href Javascript Window Open New Browser Manual Html A Href Javascript Window Open New Browser _a href="foracure.org.au" target="_blank" style="width: 105px," /a_ Moreover, opening of new windows may be prevented by browser plugins (typically

More information

CyberSource Global Payment Management for Magento 2

CyberSource Global Payment Management for Magento 2 CyberSource Global Payment Management for Magento 2 User s Guide Version 2.0.3 January 2018 January 2018 CyberSource Global Payment Management for Magento 2.x 1 Contents Recent Changes... 5 1. Introduction:...

More information

FrontPage 2000 Tutorial -- Advanced

FrontPage 2000 Tutorial -- Advanced FrontPage 2000 Tutorial -- Advanced Shared Borders Shared Borders are parts of the web page that share content with the other pages in the web. They are located at the top, bottom, left side, or right

More information

Introduction to WEB PROGRAMMING

Introduction to WEB PROGRAMMING Introduction to WEB PROGRAMMING Web Languages: Overview HTML CSS JavaScript content structure look & feel transitions/animation s (CSS3) interaction animation server communication Full-Stack Web Frameworks

More information

Report Studio: Using Java Script to Select and Submit Values to a SAP Prompt.

Report Studio: Using Java Script to Select and Submit Values to a SAP Prompt. Tip or Technique Report Studio: Using Java Script to Select and Submit Values to a SAP Prompt. Product(s): IBM Cognos 8 Area of Interest: Reporting Prompt. 2 Copyright Copyright 2008 Cognos ULC (formerly

More information

AlliedWallet QuickPay API

AlliedWallet QuickPay API AlliedWallet QuickPay API The AlliedWallet QuickPay API can process your online purchases with a minimal amount of programming. Both shopping cart and subscription transactions can be submitted. The QuickPay

More information

Fun and Profit With the Google Checkout API in Java Technology

Fun and Profit With the Google Checkout API in Java Technology TS-8849 Fun and Profit With the Google Checkout API in Java Technology Patrick Chanezon, API Evangelist, Google Inderjeet Singh, Software Engineer, Google Ignacio Blanco, Software Engineer, Globant http://code.google.com/apis/checkout/

More information

Preorder Payment Gateway Extension

Preorder Payment Gateway Extension Preorder Payment Gateway Extension Magento Extension User Guide Page 1 1. How to Install Table of contents: 1. How to Install....3 2. General Settings...6 3. Use as Payment option.....9 4. Preorder Installment

More information

Authorize.net CIM - Magento 2 USER MANUAL MAGEDELIGHT.COM E:

Authorize.net CIM - Magento 2 USER MANUAL MAGEDELIGHT.COM E: Authorize.net CIM - Magento 2 USER MANUAL MAGEDELIGHT.COM E: SUPPORT@MAGEDELIGHT.COM License Key After successful installation of Authorize.net CIM extension by using the Magento setup, you are now required

More information

Getting Your Data out of Salesforce Leveraging Your Salesforce Data in ZoomInfo Shipping Data Back to Salesforce

Getting Your Data out of Salesforce Leveraging Your Salesforce Data in ZoomInfo Shipping Data Back to Salesforce 1 Table of Contents Getting Your Data out of Salesforce Importing Data from Salesforce to ZoomInfo Signing into Salesforce from ZoomInfo Selecting a Resource and Naming a File Filtering Your Data Processing

More information

Configuring Anonymous Access to Analysis Files in TIBCO Spotfire 7.5

Configuring Anonymous Access to Analysis Files in TIBCO Spotfire 7.5 Configuring Anonymous Access to Analysis Files in TIBCO Spotfire 7.5 Introduction Use Cases for Anonymous Authentication Anonymous Authentication in TIBCO Spotfire 7.5 Enabling Anonymous Authentication

More information

VISITOR SEGMENTATION

VISITOR SEGMENTATION support@magestore.com sales@magestore.com Phone: 084.4.8585.4587 VISITOR SEGMENTATION USER GUIDE Version 1.0.0 Table of Contents 1. INTRODUCTION... 3 Create unlimited visitor segments... 3 Show targeted

More information

Int_altapay. Version

Int_altapay. Version Int_altapay Version 15.0 Table of Contents SUMMARY 3 RELEASE HISTORY 3 COMPONENT OVERVIEW 3 F UNCTIONAL O VERVIEW 5. P RIVACY, P AYMENT 3 5 4. IMPLEMENTATION GUIDE 5 4. S ETUP 4. M ETADATA IMPORT & C USTOM

More information

daa isupplier User Guide

daa isupplier User Guide daa isupplier User Guide December 2017 Contents Prerequisites... 3 Introduction... 4 1.1 Registration... 6 1.2 Login... 6 1.3 Basic Overview of the isupplier Portal Homepage... 7 1.4 Purchase Order Acceptance

More information

Welcome to the Goddess Purchasing Portal!

Welcome to the Goddess Purchasing Portal! Goddess Purchasing Portal Quick Reference Guide Welcome to the Goddess Purchasing Portal! URL http://www.goddessproductsinc.com/arkansas.html Login Password Your State of Arkansas Email Address Welcome1

More information

Donation Cart. User Guide

Donation Cart. User Guide Donation Cart User Guide Rev 6/5/2009 2008 CHARGE Anywhere, LLC. All trademarks, service marks, and trade names referenced in this material are the property of their respective owners. Contents 1 PURPOSE...

More information

AutomationDirect.com Order Import Feature

AutomationDirect.com Order Import Feature AutomationDirect.com Order Import Feature This document describes the requirements to upload a CSV or XML format order file from your system into our AutomationDirect.com E-commerce system to create an

More information

CHECKOUT INTEGRATION GUIDE - LIGHTBOX 1. Checkout Integration Guide Lightbox VERSION 1.0.0

CHECKOUT INTEGRATION GUIDE - LIGHTBOX 1. Checkout Integration Guide Lightbox VERSION 1.0.0 CHECKOUT INTEGRATION GUIDE - LIGHTBOX 1 Checkout Integration Guide Lightbox CHECKOUT INTEGRATION GUIDE - LIGHTBOX 2 Revision History DATE DESCRIPTION 05/Jun/2014 Overview Copyright All rights reserved.

More information

WebSphere Commerce Integration with ebay: Using the ebay SDK and Web Services

WebSphere Commerce Integration with ebay: Using the ebay SDK and Web Services WebSphere Commerce Integration with ebay: Using the ebay SDK and Web Services Jaweed Ali Qureshi Sr. Software Engineer jaweed@royalcyber.com Royal Cyber Inc., Malik M. Sarfaraz Software Engineer sarfaraz@royalcyber.com

More information

HOKIEMART PUNCHOUT CATALOG

HOKIEMART PUNCHOUT CATALOG HOKIEMART PUNCHOUT CATALOG Functional Overview Including Helpful Hints Last Updated April 12, 2018 pg. 1 Amazon PunchOut Catalog Location in HokieMart Remember! The HokieMart Amazon PunchOut Catalog is

More information

The Instant Order Processing Notification API Guide

The Instant Order Processing Notification API Guide The Instant Order Processing Notification API Guide A reference guide for developers who want to automate order notifications with their Checkout by Amazon orders. The Instant Order Processing Notification

More information

Website Integration Setup

Website Integration Setup Website Integration Setup Table of Contents Table of Contents... 2 Pages to Create... 3 Giving Opportunities... 3 Fund Detail... 4 General Designation Detail... 4 Campaign Detail... 5 Project Detail...

More information

The main differences with other open source reporting solutions such as JasperReports or mondrian are:

The main differences with other open source reporting solutions such as JasperReports or mondrian are: WYSIWYG Reporting Including Introduction: Content at a glance. Create A New Report: Steps to start the creation of a new report. Manage Data Blocks: Add, edit or remove data blocks in a report. General

More information

Jquery Manually Set Checkbox Checked Or Not

Jquery Manually Set Checkbox Checked Or Not Jquery Manually Set Checkbox Checked Or Not Working Second Time jquery code to set checkbox element to checked not working. Apr 09 I forced a loop to show checked state after the second menu item in the

More information

D&R Advertisement Program

D&R Advertisement Program D&R Advertisement Program Thousands of electronics industry professionals visit D&R daily to learn about the latest industry trends, gather mission-critical technical and business information, learn about

More information

Integrating Facebook. Contents

Integrating Facebook. Contents Integrating Facebook Grow your audience by making it easy for your readers to like, share or send pages from YourWebShop to their friends on Facebook. Contents Like Button 2 Share Button.. 6 Send Button.

More information

Exam : 1D Title : CIW Foundations. Version : DEMO

Exam : 1D Title : CIW Foundations. Version : DEMO Exam : 1D0-410 Title : CIW Foundations Version : DEMO 1. In an HTML 4.0-compliant browser, how is a radio button field displayed within a form? A. A radio button is displayed as a small box. B. A radio

More information