Checkout by Amazon Widget Reference Guide - Inline Checkout

Size: px
Start display at page:

Download "Checkout by Amazon Widget Reference Guide - Inline Checkout"

Transcription

1 Checkout by Amazon Widget Reference Guide - Inline Checkout

2 TOC 2 Contents Overview of This Document... 3 Overview of Checkout by Amazon Inline Checkout... 3 Who Should Read This Document...3 Prerequisites... 3 Other Documentation... 3 What's New in This Document...4 Notice About Amazon Payments Services Functionality... 4 Widget Overview... 5 Widget Setup... 5 Common Widget Methods... 6 Common Widget Parameters...6 Widgets... 7 List of Widgets by Function...7 InlineCheckoutWidget... 8 Description... 8 Widget Parameters... 8 Widget Methods... 8 Example...9 AddressWidget...10 Description Widget Parameters Example...11 WalletWidget...12 Description Widget Parameters Example...13 ExpressCheckoutWidget...14 Description Widget Parameters Widget Methods Example...15 OrderDetailsWidget Description Widget Parameters Widget Methods Example...17

3 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.) 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 Audience, Purpose, and Goals For merchants who want to use a simple, step-by-step 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 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 XML-based code. Standard Checkout - HTML Implementation Guide Standard Checkout - XML Implementation Guide Using Seller Central Standard Checkout - Callback API Guide 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.

4 Overview of This Document 4 Standard Checkout - Callback API Developers Cheat Sheet Instant Order Processing Notifications Guide Using Custom Data Fields Guide Best Practices Guide Managing Orders 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. 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. What's New in This Document Release Date Global Changes New section Notice About Amazon Payments Services Functionality on page 4 Release Date Global Changes Revise links to other documentation Release Date Global changes Modified the document to show the changes to the button use. Release Date Notice About Amazon Payments Services Functionality The Amazon Payments service has been designed and developed for use within a web browser only. Our service cannot be used within a native application (including, without limitation, ios, Android, RIM, or Windows operating systems). Amazon Payments reserves the right to suspend the Payment Account of any user of our services that has implemented our Services within a native application.

5 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"> // Replace "AEIOU1234AEIOU" with your own merchantid value <img src=" style="cursor: pointer;"/> </div> <script> new CBA.Widgets.XXXWidget ({ // Widget-specific parameters }).render("amazonwidget"); </script> The widget setup involves 4 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. Place the Checkout by Amazon button img source URL in the div defined as part of Step Inside a script block, create an instance of the widget you want to display. 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. URL Domains Used in This Guide The URL domain is specific for country to support internalization (i18n). That is, the JavaScript URL for US is: Production Widget 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:

6 Widget Overview 6 Locale US URL us/sandbox/paymentwidgets.js Common Widget Methods Each widget supports following methods: Name render(locationid) string getlocation() string getwidgettype() Description 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 Description required merchantid String Your merchant ID is a required parameter to each widget.

7 Widgets 7 Widgets List of Widgets by Function Initiating checkout InlineCheckoutWidget ExpressCheckoutWidget StandardCheckoutWidget 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. Accessing account information AddressWidget WalletWidget Accessing order details OrderDetailsWidget

8 InlineCheckoutWidget 8 InlineCheckoutWidget Description 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 Description 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. 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() Description 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.

9 InlineCheckoutWidget 9 Example The widget below renders showing the label "Checkout with Amazon." 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"> // Replace "AEIOU1234AEIOU" with your own merchantid value <img src=" &background=white&type=inlinecheckout" style="cursor: pointer;" /> </div> <script> new CBA.Widgets.InlineCheckoutWidget({ // Replace "AEIOU1234AEIOU" with your own merchantid value merchantid: "AEIOU1234AEIOU", onauthorize: function(widget) { window.location = ' + widget.getpurchasecontractid() ; } }).render("amazoninlinewidget") ; </script>

10 AddressWidget 10 AddressWidget Description 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 Description 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. optional design Object Amazon Payments will provide pre-defined set of designs. Each design identified by the name attribute has a choice

11 AddressWidget 11 Required Name Data Type Description 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"); </script>

12 WalletWidget 12 WalletWidget Description 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 Description 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 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', size: {width: 'width in pixels', height: 'height in pixels'} }

13 WalletWidget 13 Required Name Data Type Description Please note that when you set width and height values, use digits only. Do not append unit measurements such as "px". optional onpaymentselect Callback function 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>

14 ExpressCheckoutWidget 14 ExpressCheckoutWidget Description 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 Description 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 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.

15 ExpressCheckoutWidget 15 Widget Methods Table 6: Name getpurchasecontractid() submit() Description 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"> // Replace "AEIOU1234AEIOU" with your own merchantid value <img src=" &background=white&type="expresscheckout" style="cursor: pointer;" /> </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>

16 OrderDetailsWidget 16 OrderDetailsWidget Description 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 7: Required Name Data Type Description 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 8: Name Data Type Description 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 a percentage relative to the browser window. Both the top and left parameters are required.

17 OrderDetailsWidget 17 Note: You can also use the render() method (see Common Widget Methods in this documentcommon Widget Methods. 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

Checkout by Amazon Widget Reference Guide Checkout by Amazon Widget Reference Guide 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...

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Configuring Hotspots

Configuring Hotspots CHAPTER 12 Hotspots on the Cisco NAC Guest Server are used to allow administrators to create their own portal pages and host them on the Cisco NAC Guest Server. Hotspots created by administrators can be

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

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

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

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

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

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

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

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

InstantSearch+ Documentation for WooCommerce

InstantSearch+ Documentation for WooCommerce InstantSearch+ Documentation for WooCommerce Contents Overview... 1 Top Menu... 2 Home...2 Pricing...2 Help & Support...2 Stores...2 Account...4 Dashboard Tabs... 5 Analytics...5 AutoComplete...9 Search

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

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

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

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

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

Opaali Portal Quick guide

Opaali Portal Quick guide Opaali Portal Quick guide Company information Telia Finland Oyj Teollisuuskatu 15, 00510 HELSINKI, FI Registered office: Helsinki Business ID 1475607-9, VAT No. FI14756079 1 (40) Page 2 (40) Copyright

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

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

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

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

Video Embedder. Plugin for Joomla! This manual documents version 9.x of the Joomla! extension.

Video Embedder. Plugin for Joomla! This manual documents version 9.x of the Joomla! extension. Video Embedder Plugin for Joomla! This manual documents version 9.x of the Joomla! extension. https://www.aimy-extensions.com/joomla/video-embedder.html 1 Introduction The Joomla! plugin Aimy Video Embedder

More information

Manual Html A Href Javascript Window Open In New

Manual Html A Href Javascript Window Open In New Manual Html A Href Javascript Window Open In New _a href="foracure.org.au" target="_blank" style="width: 105px," /a_ You might consider opening a new window with JavaScript instead, cf. to the accepted

More information

Title Description Bug Severity Developer. jquery UI (2+ files) Update jquery UI from to Low Harald

Title Description Bug Severity Developer. jquery UI (2+ files) Update jquery UI from to Low Harald oscommerce Online Merchant v2.3.4 oscommerce Online Merchant v2.3.4 is a general maintenance release focusing on improving core features and introduces a new Content Modules feature. This release is based

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

FORMS. The Exciting World of Creating RSVPs and Gathering Information with Forms in ClickDimensions. Presented by: John Reamer

FORMS. The Exciting World of Creating RSVPs and Gathering Information with Forms in ClickDimensions. Presented by: John Reamer FORMS The Exciting World of Creating RSVPs and Gathering Information with Forms in ClickDimensions Presented by: John Reamer Creating Forms Forms and Surveys: When and What to Use them For Both Allow you

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

AMEC SCM USER MANUAL AMEC SCM USER MANUAL FOR SUPPLIER. 1 P a g e

AMEC SCM USER MANUAL AMEC SCM USER MANUAL FOR SUPPLIER. 1 P a g e AMEC SCM USER MANUAL FOR SUPPLIER 1 P a g e 1. What is AMEC SCM? AMEC SCM is an application for manage a purchase order and claim slip document of Mitsubishi elevator Asia, co. ltd (AMEC). AMEC will issue

More information

Vantiv ecommerce for Magento 2

Vantiv ecommerce for Magento 2 Vantiv ecommerce for Magento 2 User Guide Version 1.0.0 June 2017 Table of Content 1. Onboarding...3 2. Installation...3 3. Configuration...5 4. Nuances for each MOP...22 5. Checkout...23 6. Stored Payment

More information

Vendio Merchant s Guide. Sold Items. Vendio Services, Inc Campus Drive San Mateo, CA

Vendio Merchant s Guide. Sold Items. Vendio Services, Inc Campus Drive San Mateo, CA Vendio Merchant s Guide Sold Items Vendio Services, Inc. 2800 Campus Drive San Mateo, CA 94403 www.vendio.com Contents Sold Items... 3 Customize... 3 View Options... 3 Filters... 5 Search... 6 Sold Items...

More information

Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager

Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager Setting Up Resources in VMware Identity Manager (SaaS) You can find the most up-to-date technical documentation

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

Horizon Tutorial - Booking an Inspection

Horizon Tutorial - Booking an Inspection Horizon Tutorial - Booking an Inspection Horizon is built to save you time and effort, while reducing the chance for errors when booking inspections. With Horizon booking an inspection is easy and fast!

More information

Pinnacle Cart User Manual v3.6.3

Pinnacle Cart User Manual v3.6.3 Pinnacle Cart User Manual v3.6.3 2 Pinnacle Cart User Manual v3.6.3 Table of Contents Foreword 0 Part I Getting Started Overview 7 Part II Categories & Products 11 1 Manage... Categories Overview 11 Add

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

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

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

Merchant e-solutions Payment Acceptance User Guide for Magento (M1)

Merchant e-solutions Payment Acceptance User Guide for Magento (M1) Merchant e-solutions Payment Acceptance User Guide for Magento (M1) Step-by-step guidance for setup and use of the Payment Acceptance extension for Magento 1 Table of Contents Key Contacts... 3 Extension

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

Adobe Document Cloud esign Services. for Salesforce Version 17 Installation and Customization Guide

Adobe Document Cloud esign Services. for Salesforce Version 17 Installation and Customization Guide Adobe Document Cloud esign Services for Salesforce Version 17 Installation and Customization Guide 2015 Adobe Systems Incorporated. All rights reserved. Last Updated: August 28, 2015 Table of Contents

More information

Microsoft Windows SharePoint Services

Microsoft Windows SharePoint Services Microsoft Windows SharePoint Services SITE ADMIN USER TRAINING 1 Introduction What is Microsoft Windows SharePoint Services? Windows SharePoint Services (referred to generically as SharePoint) is a tool

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

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

Internet+ Mobile Developer Starter Guide. Version 1.0

Internet+ Mobile Developer Starter Guide. Version 1.0 Internet+ Mobile Developer Starter Guide Version 1.0 1 Table of contents Table of contents... 2 What is it... 3 Overview... 3 Buyers Advantages... 3 Merchants Advantages... 3 How does it work?... 4 Overview...

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

ONEFUSION INSTRUCTION MANUAL HELPING YOU MANAGE YOUR OWN SITE

ONEFUSION INSTRUCTION MANUAL HELPING YOU MANAGE YOUR OWN SITE 11/6/2013 ONEFUSION INSTRUCTION MANUAL HELPING YOU MANAGE YOUR OWN SITE Wordpress 2013 One Fusion Table of Contents Welcome and Login... 1 Dashboard... 2 Dashboard Menu... 4 Toolbar... 6 Pages... 7 Add

More information

Contents FORMAT 3. Specifications STATIC ADVERTISING 4. Interstitial HTML5 ADVERTISING 5-12

Contents FORMAT 3. Specifications STATIC ADVERTISING 4. Interstitial HTML5 ADVERTISING 5-12 Advertising specs Contents FORMAT 3 Specifications STATIC ADVERTISING 4 Interstitial HTML5 ADVERTISING 5-12 Interstitial Responsive Technical info Testing Environment Quality assurance Best practice DESIGN

More information

IT2353 Web Technology Important Questions 2 Marks and 16 Marks Unit 1 Part A 1. Differentiate Internet with Intranet. 2. What are HTML tags? 3.

IT2353 Web Technology Important Questions 2 Marks and 16 Marks Unit 1 Part A 1. Differentiate Internet with Intranet. 2. What are HTML tags? 3. IT2353 Web Technology Important Questions 2 Marks and 16 Marks Unit 1 1. Differentiate Internet with Intranet. 2. What are HTML tags? 3. Write a script that inputs text from an HTML form and outputs the

More information

Users Manual. Payment Registration Software v User Manual. Revision Date: 5/20/2014 1

Users Manual. Payment Registration Software v User Manual. Revision Date: 5/20/2014 1 Payment Registration Software v. 5.00 User Manual Revision Date: 5/20/2014 1 Table of Contents I. Introduction... 4 II. Smith Payment Registration Pro Module... 4 III. Prerequisites... 4 IV. Installing

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

This study guide is continually being revised and improved. When preparing for the exam, remember to check the website for the latest version.

This study guide is continually being revised and improved. When preparing for the exam, remember to check the website for the latest version. Contents Contents Introduction... 1 What Is a Magento 2 Solution Specialist?... 1 Who Should Take This Test?... 1 Prerequisites... 2 Exam Description... 3 Exam Content: Knowledge and Skills... 4 Content

More information

The World In. Advertising specs

The World In. Advertising specs The World In Advertising specs Format Specifications This is a living document that will evolve as we are presented with new formats, and we ll update it periodically to reflect these changes. All media

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

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

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

USER MANUAL. SalesPort Salesforce Customer Portal for WordPress (Lightning Mode) TABLE OF CONTENTS. Version: 3.1.0

USER MANUAL. SalesPort Salesforce Customer Portal for WordPress (Lightning Mode) TABLE OF CONTENTS. Version: 3.1.0 USER MANUAL TABLE OF CONTENTS Introduction...1 Benefits of Customer Portal...1 Prerequisites...1 Installation...2 Salesforce App Installation... 2 Salesforce Lightning... 2 WordPress Manual Plug-in installation...

More information

How to Use This emerchantclub Manual

How to Use This emerchantclub Manual How to Use This emerchantclub Manual Click the title in the table of contents for the feature you want to learn about. Topics are sorted first by features and then by appearance within the Site Manager.

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

UNIT 3 SECTION 1 Answer the following questions Q.1: What is an editor? editor editor Q.2: What do you understand by a web browser?

UNIT 3 SECTION 1 Answer the following questions Q.1: What is an editor? editor editor Q.2: What do you understand by a web browser? UNIT 3 SECTION 1 Answer the following questions Q.1: What is an editor? A 1: A text editor is a program that helps you write plain text (without any formatting) and save it to a file. A good example is

More information