Inline Checkout Implementation Guide

Size: px
Start display at page:

Download "Inline Checkout Implementation Guide"

Transcription

1 Inline Checkout Implementation Guide

2 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... 3 Other Documentation... 3 What's New in This Document...4 Introducing Inline Checkout...5 Integration Touch Points... 5 Widgets Overview...6 Initiating Checkout...6 Accessing Account Information...6 Accessing Order Details...6 Widget Setup... 6 API Overview...8 Sample Integration... 9 Initiating Inline Checkout...9 Selecting the Buyer Address Obtaining the Selected Shipping Address...11 Selecting the Payment Method...12 Reviewing the Order Completing the Transaction Showing the Order Details on Your Website...16 ExpressCheckoutWidget Description Examples Multiple Addresses...19 Address Selection Page Integration...20 Description Example...20 Testing the Integration Exit Criteria Ten Types of Test Transactions Order Options Used When Testing Transactions...22 Handling Settlements Customizing the Pop-Up Window... 24

3 Checkout by Amazon Overview of This Document 3 Overview of This Document Overview of Checkout by Amazon Inline Standard Checkout Welcome to the Checkout by Amazon Inline Checkout Guide. This section describes who should read this guide, how the guide is organised, 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 Standard Checkout using Checkout by Amazon on your website. Prerequisites This guide assumes you--or your development staff--are familiar with using HTML and JavaScript in an application development environment. Before you can use Checkout by Amazon Inline Standard Checkout, your systems must meet the following prerequisites: You must be familiar with using web service APIs. You must be familiar with using dynamic website programming. You must be familiar with using JavaScript. (There are several required JavaScript code snippets that you must use in your carts to enable Inline and Express Checkout.) Standard Checkout.) For more information about using the Inline Standard Checkout Widgets, please see the following references: Inline Checkout API Reference Guide Inline Checkout Implementation Guide Inline Checkout Widget Reference Guide HTML Implementation Guide (PDF) XML Implementation Guide (PDF) 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 Inline Checkout - 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 to integrate Checkout by Amazon seamlessly into their website. Inline Integration allows you to integrate Checkout by Amazon completely into your website using your layout. Your buyers can

4 4 Checkout by Amazon Overview of This Document checkout using Checkout by Amazon without popups. Standard Checkout - Callback API Guide Instant Order Processing Notifications Guide Managing Orders For developers who want to build their own applications to calculate shipping rates as well as promotional discounts and then send these results to Checkout by Amazon. For developers who want to automate order notifications with Amazon Payments. 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 Revise links to other documentation Release Date Release Date Changes to this document Implementation Guide Initial Release

5 Checkout by Amazon Introducing Inline Checkout 5 Introducing Inline Checkout Inline Checkout allows you to integrate the Amazon address book and payment methods into your existing checkout experience. You can use the combination of Inline Checkout Widgets and APIs to create a checkout experience custom-fit for your website. Integration Touch Points

6 6 Checkout by Amazon Widgets Overview Widgets Overview Inline Checkout uses a set of widgets to create the checkout experience. The following is the list of widgets that can be used with Inline Checkout. Initiating Checkout InlineCheckoutWidget ExpressCheckoutWidget (Please read the ExpressCheckoutWidget section below for more details) Accessing Account Information AddressWidget WalletWidget Accessing Order Details OrderDetailsWidget Widget Setup We recommend you to use our Inline Integration Code Generator to generate the widgets that can be found in Seller Central. To render a widget, derive your code from 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=' <div id="amazonwidget"> <img src=" cartownerid=aeiou1234aeiou"/> </div> <script> new CBA.Widgets.XXXWidget ({ // Widget-specific parameters }).render("amazonwidget"); 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.

7 Checkout by Amazon Widgets Overview 7 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 DE is: Production Widget Please see this table for a list of URLs used for specific locales: Locale DE URL PaymentWidgets.js Sandbox Widget To test your integration in the Sandbox environment, use this URL. Locale DE URL de/sandbox/paymentwidgets.js

8 8 Checkout by Amazon API Overview API Overview The following is the list of APIs that can be used with Inline Checkout: GetPurchaseContract SetPurchaseItems CompletePurchaseContract You can read the Inline Checkout API Reference Guide document for details on how to use these APIs and for the list of API parameters.

9 Checkout by Amazon Sample Integration 9 Sample Integration Initiating Inline Checkout The Checkout with Amazon button 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 buyers click the Checkout with Amazon button, we will notify you so that you can customize your checkout pipeline using the widgets that allow the customers access their Amazon account information. Place the following code on your page wherever you want to display the Checkout with Amazon button which allows your customers to initiate the checkout with Amazon: <script type='text/javascript' src=' <div id="amazoninlinewidget"> <img src=" cartownerid=aeiou1234aeiou &color=orange&size=large&background=white&type=inlinecheckout"/> </div> <script> new CBA.Widgets.InlineCheckoutWidget({ merchantid: "AEIOU1234AEIOU", onauthorize: function(widget) { window.location = ' + widget.getpurchasecontractid();} }).render("amazoninlinewidget"); Once you complete this step, the Checkout with Amazon button will appear on your page.

10 10 Checkout by Amazon Sample Integration When the buyers click the Checkout with Amazon button and authenticate themselves with their Amazon credentials, we trigger the JavaScript function you associated with the onauthorize parameter. In the example above, the JavaScript function redirects the browser to the next page, shown as " Similarly, you can either redirect to the next page as shown in the example or perform additional processing as necessary. Note that we pass a reference to the widget object itself to the JavaScript callback function. You can call the getpurchasecontractid() method on this object instance to get the unique session identifier named Purchase Contract ID. You can use that identifier to interact with our APIs on the backend. The identifier helps tie API activity to the buyer session on your website. You can send the Purchase Contract ID to your server side application using an AJAX call or as query string parameter as you redirect the browser to the next page. The next step helps your buyer to view and select a shipping address from their Amazon Address book after you receive the signal from the widget that the buyer has authorized; that is, confirmed checkout with Amazon. Note: The checkout session is valid only for three hours; after that time, the Purchase Contract ID will become invalid if the checkout session is not completed. Selecting the Buyer Address The Address Book Widget allows your buyers to access their Amazon address book from within your checkout pipeline and then select a shipping address. To display the Address Book Widget, place the following code where you want the widget to appear: <script type='text/javascript' src=' <div id="amazonaddresswidget"></div> <script> new CBA.Widgets.AddressWidget({ merchantid: "AEIOU1234AEIOU", onaddressselect: function(widget) { // the buyer has selected a shipping address // enable the Continue button on your page // so the buyer can go to the next step } }).render("amazonaddresswidget"); You do not have to specify the purchase contract id explicitly when you integrate with the Address Book or Wallet widget. When buyer initiates a checkout using Inline (or Express) Checkout widgets, we also store the purchase contract id in the buyer s browser cookies. The Address Book and Wallet Widgets will read the purchase contract id from the cookie if none is provided as parameter. Note: We can store only one cookie per buyer per browser session. If the buyer has 2 active checkout sessions on the same browser and if you have not explicitly specified the purchase contract ID in the Address Book and Wallet widgets, those widgets will use the latest purchase contract ID regardless of the session. As result, the address selected by the buyer in one session will also appear in the other session. To avoid this conflict, be sure to explicitly specify the purchase contract ID when creating the widgets. Once you complete this step, the Amazon Shipping Address Widget will appear in your shipping address page:

11 Checkout by Amazon Sample Integration 11 We recommend that you provide a Continue button on your address selection page so the buyer can go to the next page after selecting an address. The step below describes how you can obtain the address selected by the buyer after the buyer makes the address selection (in this case, after clicking the Continue button.) Obtaining the Selected Shipping Address To obtain the shipping address selected by the buyer, you must invoke the GetPurchaseContract API as part of your server-side handling of the Continue button on your Address Selection page. This is an optional step that will provide you the address information to help you calculate the order total. The API will take the purchase contract ID as input which was returned to you during the inline checkout initiation. Sample Request &SignatureMethod=HmacSHA256 &PurchaseContractId=amzn1.contract bc485cc4c6b0dc63cd7f8c0d3d8900 &AWSAccessKeyId=AKIAJKYFSJU7PEXAMPLE &SignatureVersion=2 &Timestamp= T05%3A20%3A %3A00 &Signature=CLZOdtJGjAo81IxaLoE7af6HqK0EXAMPLE &Version= Sample Response HTTP Status 200 OK <GetPurchaseContractResponse xmlns=" <GetPurchaseContractResult> <PurchaseContract> <Id>amzn1.contract.1.1.f86d99c2943f98dc28d586c </Id> <ExpirationTimeStamp> T01:01:01.000Z</ExpirationTimeStamp> <MerchantId>AEIOU1234AEIOU</MerchantId> <MarketplaceId>AZ4B0753LGLX</MarketplaceId> <State>OPEN</State> <Destinations> <Destination> <DestinationName>#default</DestinationName> <DestinationType>PHYSICAL</DestinationType> <PhysicalDestinationAttributes> <ShippingAddress> <City>NY</City> <StateOrProvinceCode>NY</StateOrProvinceCode> <PostalCode> </PostalCode> <CountryCode>US</CountryCode> </ShippingAddress> </PhysicalDestinationAttributes> </Destination>

12 12 Checkout by Amazon Sample Integration </Destinations> </PurchaseContract> </GetPurchaseContractResult> <ResponseMetadata> <RequestId>5f20169b-7ab2-11df-bcef-d35615e2b044</RequestId> </ResponseMetadata> </GetPurchaseContractResponse> Note: We share only the subset of address information that is sufficient for you to perform calculations. However, once the order is placed by the buyer, you will receive the full address so you can fulfill the order correctly. For further details on how to make the API call and the format of the API response, please read the API Reference document. Selecting the Payment Method 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. To render the Wallet Widget, place the following code where you want the widget to appear. <script type='text/javascript' src=' <div id="amazonwalletwidget"></div> <script> new CBA.Widgets.WalletWidget({ merchantid: "AEIOU1234AEIOU", onpaymentselect: function(widget) { // the buyer has selected a payment method // enable the Continue button on your page // so the buyer can go to the next step } }).render("amazonwalletwidget"); You do not have to specify the purchase contract id explicitly when you integrate with the Address Book or Wallet widget. When buyer initiates a checkout using Inline (or Express) Checkout widgets, we also store the purchase contract id in the buyer s browser cookies. The Address Book and Wallet Widgets will read the purchase contract id from the cookie if none is provided as parameter. Note: We can store only one cookie per buyer per browser session. If the buyer has 2 active checkout sessions on the same browser and if you have not explicitly specified the purchase contract ID in the Address Book and Wallet widgets, those widgets will use the latest purchase contract ID regardless of the session. As result, the address selected by the buyer in one session will also appear in the other session. To avoid this conflict, be sure to explicitly specify the purchase contract ID when creating the widgets. Once you complete this step, the Amazon Payment Method Widget will appear on your page:

13 Checkout by Amazon Sample Integration 13 Checkout by Amazon will validate and authorize the payment method selected by the buyer without notifying you of the payment method used. Checkout by Amazon will then use this information to collect payments from the buyer after buyer places the order. Reviewing the Order At the end of your checkout pipeline you display the order summary before the buyer confirms the order. When you display the order summary, you can use the "read-only" version of the Address Widget and Wallet Widget so the buyer can confirm the current selection. The read-only widgets allow the buyer to review the address and payment information previously selected but do not allow the buyer to change the selection. Below are samples of Address Book and Wallet widget in read-only mode. Address Book Widget <script type='text/javascript' src=' <div id="amazonaddresswidget"></div> <script> new CBA.Widgets.AddressWidget({ merchantid: "AEIOU1234AEIOU", displaymode: "Read" }).render("amazonaddresswidget"); Wallet Widget <script type='text/javascript' src=' <div id="amazonwalletwidget"></div> <script> new CBA.Widgets.WalletWidget({ merchantid: "AEIOU1234AEIOU", displaymode: "Read" }).render("amazonwalletwidget");

14 14 Checkout by Amazon Sample Integration Completing the Transaction When the buyer confirms the order on your order review page, you must invoke the SetPurchaseItems API followed by CompletePurchaseContract API operation so Checkout by Amazon can authorize the payment of the order. The SetPurchaseItems API will take the list of order items as input. You can specify the order total (that is, the amount the buyer will be charged for the entire order) broken down to each item as part of this API call. Please read the API Reference document for details of how to pass item details and charges for each item. Once you set the items to the purchase contract, you can call the CompletePurchaseContract API which accepts the purchase contract ID as input. This API transforms the purchase contract into Checkout by Amazon orders and returns you a list of Checkout by Amazon Order IDs. You then use these Order IDs to manage the orders. Note: Internationally, various characters are used to represent a decimal separator. For example, in the US, USD represents 10 dollars and 49 cents. The US uses a period (.) as the default separator. Other locations might use a comma (,) instead, and represent the amount as 10,49 USD. Checkout by Amazon accepts only a period (.) as the decimal separator. If you perform calculations for international transactions, you might need to modify your code to convert the decimal separator from the comma to a period. The following code represents a method you might use: parameters["charges.shipping.amount"] = charges.shipping.amount.tostring(); to parameters["charges.shipping.amount"] = Replace(charges.Shipping.Amount.ToString(), ",", "."); Sample Request for SetPurchaseItems &AWSAccessKeyId=AKIAJKYFSJU7PEXAMPLE &PurchaseContractId=amzn1.contract d70090d7caaafb24a12f1a2e071fa &PurchaseItems.PurchaseItem.1.Description=Desc%20of%20the%20item &PurchaseItems.PurchaseItem.1.FulfillmentNetwork=MERCHANT &PurchaseItems.PurchaseItem.1.ItemCustomData=%3Cdata%3EItem%20Custom%20Data%3C %2Fdata%3E &PurchaseItems.PurchaseItem.1.MerchantId=AEIOU1234AEIOU &PurchaseItems.PurchaseItem.1.MerchantItemId=MerchantItemId1 &PurchaseItems.PurchaseItem.1.ProductType=PHYSICAL &PurchaseItems.PurchaseItem.1.Quantity=5 &PurchaseItems.PurchaseItem.1.SKU=SKU%20123 &PurchaseItems.PurchaseItem.1.Title=Title%20of%20the%20item &PurchaseItems.PurchaseItem.1.UnitPrice.Amount=33.33 &PurchaseItems.PurchaseItem.1.UnitPrice.CurrencyCode=EUR &PurchaseItems.PurchaseItem.1.PhysicalProductAttributes.Condition=New &PurchaseItems.PurchaseItem.1.PhysicalProductAttributes.DeliveryMethod. DestinationName=%23default &PurchaseItems.PurchaseItem.1.PhysicalProductAttributes.DeliveryMethod. DisplayableShippingLabel=test%20123 &PurchaseItems.PurchaseItem.1.PhysicalProductAttributes.DeliveryMethod. ServiceLevel=Standard &PurchaseItems.PurchaseItem.1.PhysicalProductAttributes.DeliveryMethod. ShippingCustomData=Custom%20Data &PurchaseItems.PurchaseItem.1.PhysicalProductAttributes.ItemCharges. Promotions.Promotion.1.Description=Promo%20Desc%20456 &PurchaseItems.PurchaseItem.1.PhysicalProductAttributes.ItemCharges. Promotions.Promotion.1.Discount.Amount=11.11

15 Checkout by Amazon Sample Integration 15 &PurchaseItems.PurchaseItem.1.PhysicalProductAttributes.ItemCharges. Promotions.Promotion.1.Discount.CurrencyCode=EUR &PurchaseItems.PurchaseItem.1.PhysicalProductAttributes.ItemCharges. Promotions.Promotion.1.PromotionId=Promo123 &PurchaseItems.PurchaseItem.1.PhysicalProductAttributes.ItemCharges. Shipping.Amount=11.11 &PurchaseItems.PurchaseItem.1.PhysicalProductAttributes.ItemCharges. Shipping.CurrencyCode=EUR &PurchaseItems.PurchaseItem.1.PhysicalProductAttributes.Weight.Unit=KG &PurchaseItems.PurchaseItem.1.PhysicalProductAttributes.Weight.Value=3.14 &Signature=Signature=lBP67vCvGlDMBQ1dofZxg8E8SUEXAMPLE &SignatureMethod=HmacSHA256 &SignatureVersion=2 &Timestamp= T05%3A11%3A %3A00 &Version= Sample Response for SetPurchaseItems HTTP Status 200 OK <SetPurchaseItemsResponse xmlns=" <ResponseMetadata> <RequestId>400bcf29-7ab1-11df-bcef-d35615e2b044</RequestId> </ResponseMetadata> </SetPurchaseItemsResponse> Sample Request for CompletePurchaseContract &Action=CompletePurchaseContract?PurchaseContractId= amzn1.contract.1.1.f86d99c2943f98dc28d586c &IntegratorId=MNOPQ1234MNOPQ &IntegratorName=Integrator%20Inc &InstantOrderProcessingNotificationURLs. IntegratorURL=http%3A%2F%2Fintegrator.com%2Fiopn &InstantOrderProcessingNotificationURLs. MerchantURL=http%3A%2F%2Fmydomain.com%2Fiopn &SignatureMethod=HmacSHA256&Expires= T12:00:00-07:00 &AWSAccessKeyId=0GS7553JW74RRM612K02EXAMPLE &SignatureVersion=2 &Signature=Dqlp3Sd61jTUA9Uf6SGtEExwUQEXAMPLE &Version= Sample Response for CompletePurchaseContract HTTP Status 200 OK <CompletePurchaseContractResponse xmlns=" <CompletePurchaseContractResult> <OrderIds> <OrderId> </OrderId> <OrderId> </OrderId> </OrderIds> </CompletePurchaseContractResult> <ResponseMetadata> <RequestId>02055a df-8d5c-bf56a38ef3b4</RequestId> </ResponseMetadata> </CompletePurchaseContractResponse> For further details on how to make the API call and the format of the API response, please read the API Reference document.

16 16 Checkout by Amazon Sample Integration Showing the Order Details on Your Website Once you have the Checkout by Amazon Order ID, you can show the details of the order to your customers within your website. Place the following code where you want the order details to appear. <script type='text/javascript' src=' <p>your Amazon Payments Order ID is <a href="#" onclick="orderdetailswidget.open('230px', '554px');"> </ a>.</p> <script> var orderdetailswidget = new CBA.Widgets.OrderDetailsWidget({ merchantid: "AEIOU1234AEIOU", orderid: ' ' });

17 Checkout by Amazon ExpressCheckoutWidget 17 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. Examples <script type='text/javascript' src=' <div id="amazonexpresswidget"> <img src=" cartownerid=aeiou1234aeiou&color=orange&size=large&background=white"/> </div> <script> new CBA.Widgets.ExpressCheckoutWidget({ merchantid: "AEIOU1234AEIOU", onauthorize: function(widget) { window.location = ' + widget.getpurchasecontractid();} }).render("amazonexpresswidget"); After the buyer selects an address and a payment method within a pop-up window, we perform the JavaScript function associated with the onauthorize parameter. With this widget, you can get the newly created purchase contract ID and then redirect the buyer to the next step. Because the buyer pre-selected the address and payment method, you can use the read-only mode of the Address Book and Wallet widgets. We recommend you to use the read-only mode only if you do not want your buyer to modify the address or payment method that was already selected. Below are samples of Address Book and Wallet widget in read-only mode. Address Book Widget <script type='text/javascript' src=' <div id="amazonaddresswidget"></div> <script>

18 18 Checkout by Amazon ExpressCheckoutWidget new CBA.Widgets.AddressWidget({ merchantid: "AEIOU1234AEIOU", displaymode: "Read" }).render("amazonaddresswidget"); Wallet Widget <script type='text/javascript' src=' <div id="amazonwalletwidget"></div> <script> new CBA.Widgets.WalletWidget({ merchantid: "AEIOU1234AEIOU", displaymode: "Read" }).render("amazonwalletwidget");

19 Checkout by Amazon Multiple Addresses 19 Multiple Addresses The Inline Checkout Widget allows buyers to select multiple shipping addresses for a single order. You can simply display the Address Book Widget multiple times, each time assigning a different destination name to the widget, allowing the buyers to select a different address with each widget instance. Each address is then mapped to the corresponding destination name and sent back to you. Buyers can select only one address using the Express Checkout widget. However, you can still allow them to select multiple addresses after they are redirected to your website. After the redirect, simply use the same technique you would use with Inline Checkout to enable the multiple shipping address selection.

20 20 Checkout by Amazon Address Selection Page Integration Address Selection Page Integration Description In addition to placing the Inline Checkout button or Express Checkout button on your shopping cart page, we strongly recommend that you place the Inline Checkout Widget on your Address Selection page as well so that buyers can benefit from the convenience of accessing their Amazon Address Book from inside your checkout pipeline. Example <script type='text/javascript' src=' <div id="amazoninlinewidget"> <img src=" cartownerid=aeiou1234aeiou &color=orange&size=large&background=white&type=inlinecheckout"/> </div> <script> new CBA.Widgets.InlineCheckoutWidget({

21 Checkout by Amazon Address Selection Page Integration 21 merchantid: "AEIOU1234AEIOU", onauthorize: function(widget) { // load a customized Address Selection page with the Address Book Widget enabled } }).render("amazoninlinewidget"); We also recommend you to place the Inline Checkout button on your Address Selection page so buyers can benefit from the convenience of accessing their Amazon Address Book while using many of the advanced features of your checkout pipeline. Note: The widget you place on your address selection page is the same Inline widget with buttontype parameter set to "addressbook". This parameter will customize the text on the button to display "Use the Amazon Address Book". In the example above, we suggest loading a customized version of the address selection page when the onauthorize event is triggered. in the customized Address Selection page, you can display the Amazon Addres Book widget.

22 22 Checkout by Amazon Testing the Integration Testing the Integration Exit Criteria Here are the exit criteria for successfully building Checkout buttons for your website. Use this checklist to be sure that your checkout buttons work correctly before you release your website to the public. 1. The button works in the Sandbox and in Production (that is, the order pipeline completes successfully). 2. The Production order appears in Amazon Payments site using buyer account login. 3. The Production order appears in Seller Central using merchant account login (on the Manage Orders page). 4. You cancel all test orders with your Buyer (Test) Account on the Amazon Payments site. Ten Types of Test Transactions Use these additional transaction types to fully test your Checkout by Amazon implementation: 1. Simple 1-item 2. Item with variations 3. Item for less than Item for greater than Item with multiple quantities 6. Item shipping to a domestic address using standard shipping 7. Item shipping to a domestic address using expedited shipping 8. Item shipping to an international address using standard shipping 9. Item shipping to an international address using expedited shipping 10. Fulfill an order in Production Order Options Used When Testing Transactions When you build and test your full implementation of Checkout by Amazon on your site, you should consider building transactions with the following types of conditions: 1. Item with a promotion 2. Item with multiple promotions 3. Item with per-item and per-shipment charges 4. Item with banded shipping 5. Item with One-day shipping 6. Item with Two-day shipping

23 Checkout by Amazon Handling Settlements 23 Handling Settlements An order is created when you perform the CompletePurchaseContract operation. The order will get to the Ready- To-Ship state when the payment amount is reserved successfully on buyer s payment method. You must wait for the order to get to the Ready-To-Ship state before you fulfill the order. You can listen to the order notifications to know immediately when the order state changes. Please see the Instant Order Processing Notifications Guide for details about using instant order processing notifications. Once the order is ready to ship, you must take action on them: You must fulfill them (ship them and mark them as shipped), or You must cancel them (for test orders, it's easier to cancel them with your buyer (test) account) The customer is charged only when you fulfill the order. You must take action on all orders within 30 days; otherwise, Checkout by Amazon will cancel the order. Please see the Instant Order Processing Notification API Guide to learn more about fulfilling, cancelling, refunding, and other order management functions.

24 24 Checkout by Amazon Customizing the Pop-Up Window Customizing the Pop-Up Window Buyers interact with a pop-up window when they want to sign in or add a new address or a new credit card. You can customize the pop-up window by displaying your own banner image at the top of the pop-up window. Below is a screenshot of how the sign-in page looks like with a custom banner: To upload the banner image, first log in to your Seller Central account. Then, click Settings > Checkout Pipeline Settings. There is a form to upload the banner image at the end of this page.

25 Checkout by Amazon Customizing the Pop-Up Window 25 Note: The banner image must be exactly 520 pixels wide and 50 pixels tall. If you don t upload a banner, your seller logo will appear in the banner area.

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

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

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

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

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. 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

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

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

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

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

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

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

KNET API Integration Guide

KNET API Integration Guide KNET API Integration Guide API INTEGRATION GUIDE VERSION 1.0 1 Table of Contents 1. Overview...5 1.1 Scope...5 1.2 Target Audience...5 1.3 Assistance...5 1.4 Documentation Feedback...5 2 KNET Transaction

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

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

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

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

IPN User Guide PAYTABS INSTANT PAYMENT NOTIFICATION USER GUIDE VERSION 1.2. PAYTABS

IPN User Guide PAYTABS INSTANT PAYMENT NOTIFICATION USER GUIDE VERSION 1.2. PAYTABS IPN User Guide PAYTABS INSTANT PAYMENT NOTIFICATION USER GUIDE VERSION 1.2 PAYTABS www.paytabs.com CONTENTS 1. Overview... 1 1.1. Test Merchant Account v/s Live Merchant Account... 1 1.2. Target Audience...

More information

Merchant e-solutions Payment Acceptance User Guide for Magento version 2.x ( M2 )

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

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

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

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

Magento Enterprise Edition. User Guide. Part IV: Customers Sales & Orders Payments Shipping Taxes. Version

Magento Enterprise Edition. User Guide. Part IV: Customers Sales & Orders Payments Shipping Taxes. Version Magento Enterprise Edition User Guide Part IV: Customers Sales & Orders Payments Shipping Taxes Version 1.14.2 Contents Customers 1 Chapter 1: Customer Accounts 3 Customer Account Configuration 4 Customer

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

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

Ordering Tool. The Cisco. Ordering Tool. User Guide

Ordering Tool. The Cisco. Ordering Tool. User Guide Ordering Tool The Cisco Ordering Tool User Guide Table of Contents Ordering Tool User Guide TABLE OF CONTENTS...2 ABOUT THIS GUIDE...6 BENEFITS OF USING THE ORDERING TOOL...6 USING THE ORDERING TOOL...6

More information

EWAY RAPID SETUP GUIDE FOR

EWAY RAPID SETUP GUIDE FOR EWAY RAPID SETUP GUIDE FOR CONTENTS 1. Add ewayrapid payment method to your online shop... 2 2. Configure and activate ewayrapid payment method... 3 3. Add eway logo and credit card types to your website...

More information

Getting Started Guide. Prepared by-fatbit Technologies

Getting Started Guide. Prepared by-fatbit Technologies Getting Started Guide Prepared by-fatbit Technologies 1 Contents 1. Manage Settings... 3 1.1. General... 4 1.2. Local... 6 1.3. SEO... 7 1.4. Option... 8 1.5. Live Chat... 19 1.6. Third Part API s... 20

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

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

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

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

Online Ordering Manual

Online Ordering Manual Online Ordering Manual for the Pay-LESS website www.paylessoffice.com Customer Log In... 2-3 Finding Your Account Number... 4 Searching for Products... 5-6 Quick Order... 7-8 Product Comparison... 9-10

More information

Help Guide Service Readiness Management

Help Guide Service Readiness Management Help Guide Service Readiness Management (27-11-12) Page 1 Table of Contents SRM Help Guide... 4 Login... 4 Create New Account / Register... 5 Starting Page / Self Audit... 6 Identify Tools... 7 Summary...

More information

Oracle isupplier. Supplier User Guide

Oracle isupplier. Supplier User Guide Supplier User Guide Table of Contents isupplier Application, Help and Support... 3 Registration... 3 For Help... 3 Overview... 4 User Registration... 5 Login to isupplier... 7 isupplier and Sourcing Responsibility

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

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

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

Main Login Screen Enter user name and password. New users can call or customer service using the information provided. If you have forgotten

Main Login Screen Enter user name and password. New users can call or  customer service using the information provided. If you have forgotten Main Login Screen Enter user name and password. New users can call or email customer service using the information provided. If you have forgotten your password, enter your email address in the box provided

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

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

Purchase Tracking Web Service. Technical Documentation. Document Version 1.6

Purchase Tracking Web Service. Technical Documentation. Document Version 1.6 Purchase Tracking Web Service Technical Documentation Document Version 1.6 Revision date 02/28/2014 2 1 Overview The PriceSpider Where-to-Buy (WTB) is an online and local retailer locator. Manufacturers

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

Online Ordering Instructions

Online Ordering Instructions Online Ordering Instructions Supplied By Table of Contents Login... 2 How to Order Products... 2 Shopping Cart... 3 Checkout... 3 My Account... 7 Login Type www.alliancepromotions.com.au in your preferred

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

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

AVAYA LEARNING CENTER END USER GUIDE. Avaya Learning Virtual Campus License Registration Guidelines

AVAYA LEARNING CENTER END USER GUIDE. Avaya Learning Virtual Campus License Registration Guidelines AVAYA LEARNING CENTER END USER GUIDE Avaya Learning Virtual Campus License Registration Guidelines 1 Avaya Learning Virtual Campus License Registration Guide November 2015 ENROLLMENT REGISTRATION PROCESS

More information

Welcome to the easy step-by-step instructions on how to register for the Energy Generation Conference.

Welcome to the easy step-by-step instructions on how to register for the Energy Generation Conference. Welcome to the easy step-by-step instructions on how to register for the Energy Generation Conference. If you have not created a profile account on our registration site before, you must do so before you

More information

Distributor User Guide

Distributor User Guide Distributor User Guide edelivery Electronic License Delivery Note: All screen shots are subject to change as the edelivery application is still in the development process 1 Table of Contents Audience...2

More information

ebay Connector Features Module Configuration

ebay Connector Features Module Configuration ebay Connector webkul.com/blog/ebay-connector-for-magento2/ March 15, 2016 ebay Connector extension allows you to integrate Magento 2 store with ebay store. Import products, categories, and orders from

More information

SimStore User Guide. Content Management Overview Purchased Content Details Overview... 45

SimStore User Guide. Content Management Overview Purchased Content Details Overview... 45 Contents Contents Logging into SimStore... 1 Selecting Your SimStore Institution... 4 Adding a New SimStore User... 6 Managing Your SimStore Users... 8 Overview of SimStore Home Page... 10 Searching for

More information

Basic & Pro Resellers

Basic & Pro Resellers Getting Started Guide Basic & Pro Resellers Getting Started Guide Page 1 Getting Started Guide: Basic & Pro Resellers Version 2.2 (1.6.2012) Copyright 2012 All rights reserved. Distribution of this work

More information

Webstore user guide. Table of Contents

Webstore user guide. Table of Contents Webstore User Guide Table of Contents New for Webstore 3.0 3 What the Polycom Webstore is 4 What the Polycom Webstore is not 4 Webstore Prerequisites 5 Accessing The Webstore 6 Obtaining access 6 Logging

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

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

Shopper Guide v.3: 3/23/16

Shopper Guide v.3: 3/23/16 Shopper Guide v.3: 3/23/16 SMARTOCI: ADMINISTRATOR Table of Contents 1) Getting Started...4 What is smartoci?...4 Shopper Browser Versions...5 Logging in...6 Issues Logging In (smartoci Access Issues)...6

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

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

PayPal Standard Sandbox Testing

PayPal Standard Sandbox Testing PayPal Standard Sandbox Testing Updated June 2014 2014 GoPrint Systems, Inc., All rights reserved. PayPal Standard Configuration Guide 1 PayPal Standard Sandbox Testing How it works At the developer Sandbox

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

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

Express Checkout V3.0. Express CheckOut Integration Guide Version 3. PayTabs

Express Checkout V3.0. Express CheckOut Integration Guide Version 3. PayTabs Express Checkout V3.0 Express CheckOut Integration Guide Version 3 PayTabs www.paytabs.com Revision History Version Description of Change Date 1.0 - New Document 24/03/2015 1.1 - Added Section : Troubleshoot

More information

Newegg Elite Seller Program Guide

Newegg Elite Seller Program Guide Newegg Elite Seller Program Guide Newegg Elite Seller Program offers three types of membership for different business model of sellers: Standard, Professional, and Enterprise. This guide will help you

More information

SEGPAY WooCommerce Plugin SETUP

SEGPAY WooCommerce Plugin SETUP SEGPAY WooCommerce Plugin SETUP Client Documentation Version 1.1 May 11, 2017 Table of Contents Version Tracking... 3 Summary... 4 Pre-Installation Checklist... 4 Plugin Installation... 5 Testing... 9

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

Ad Banner Manager 8.1 User Guide. Ad Banner Manager 8.1

Ad Banner Manager 8.1 User Guide. Ad Banner Manager 8.1 Ad Banner Manager 8.1 User Guide Ad Banner Manager 8.1 User Guide... 1 Introduction... 6 Installation and configuration... 6 Upgrading... 6 Installation Steps... 7 Setting Page Permissions for the BannerAdvertisers

More information

Frequently Asked Questions

Frequently Asked Questions Q. What is GTSE v.2.1.3? Frequently Asked Questions A. GTSE stands for Global Transport Secure ecommerce. GTSE v.2.1.3 is the next generation of Global Payments complete solution for small to mid-sized

More information

Stripe Payment with Recurring Profile MAGEDELIGHT.COM USER MANUAL E:

Stripe Payment with Recurring Profile MAGEDELIGHT.COM USER MANUAL E: Stripe Payment with Recurring Profile USER MANUAL MAGEDELIGHT.COM E: SUPPORT@MAGEDELIGHT.COM License Key After successful installation of Stripe Payment with recurring extension by using the Magento setup,

More information

CMSnipcart Documentation

CMSnipcart Documentation CMSnipcart Documentation Release 1.0.0 CMExtension January 07, 2016 Contents 1 Overview 3 1.1 Technical Requirements......................................... 3 1.2 Features..................................................

More information

To return to your site, please click the back button on your browser. Page 1

To return to your site, please click the back button on your browser. Page 1 Contents Login / Create a Web Account... 2 My Account and Order History... 3 Customization Wizard... 4 Choosing Type... 5 Adding a Logo... 6 Adding Standard Text... 7 Adding Emblems... 9 Choosing the Location

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

Instructions and Step by Step Guide

Instructions and Step by Step Guide Instructions and Step by Step Guide Version 1. 2017 This guide is produced through the Author2Market automated production system and is a perfect example of our Book-Of-One Revolution! www.author2market.com

More information

PayPal Merchant Account Toolkit For Small Online Business

PayPal Merchant Account Toolkit For Small Online Business PayPal Merchant Account Toolkit For Small Online Business ========================================== by : Kane Deng (Geeyo.com) ****************************************** Bring to you valuable & fresh

More information

Entering an erequest. Login Page

Entering an erequest. Login Page The erequest is an easy way for an employee to submit a request for goods, services, or payments. No prior knowledge of the University procurement process is necessary for completing this online, electronic

More information

How to Order a Four Panel Brochure through Print Services. Go to the Print Services Web Page and select the Online Store link.

How to Order a Four Panel Brochure through Print Services. Go to the Print Services Web Page and select the Online Store link. How to Order a Four Panel Brochure through Print Services Go to the Print Services Web Page and select the Online Store link. 1 Enter your Username and Password on the Print Services Online Ordering home

More information

IMEI Database. Manufacturer / Brand Owner User Guide. Version September Copyright Notice. Copyright 2015 GSM Association

IMEI Database. Manufacturer / Brand Owner User Guide. Version September Copyright Notice. Copyright 2015 GSM Association IMEI Database Manufacturer / Brand Owner User Guide Version 4.0 01 September 2015 Copyright Notice Copyright 2015 GSM Association GSM and the GSM logo are registered and owned by the GSM Association. Antitrust

More information

Portal > Knowledgebase > I am a Supplier/Decorator > ESP Websites > Website Settings

Portal > Knowledgebase > I am a Supplier/Decorator > ESP Websites > Website Settings Portal > Knowledgebase > I am a Supplier/Decorator > ESP Websites > Website Settings Website Settings Tamika C - 2017-02-07 - in ESP Websites Website Settings The Website Settings section enables you to

More information

Resurs Bank. Magento 1 module. Checkout

Resurs Bank. Magento 1 module. Checkout Resurs Bank Magento 1 module Checkout Content Content Module installation Frontend Cart Shipping methods Discount code The iframe Data syncing Order placement Admin Payment methods Callback settings Salt-key

More information

Autodesk App Store Browser-based App Submission Process Overview

Autodesk App Store Browser-based App Submission Process Overview Autodesk App Store Browser-based App Submission Process Overview Please read through this information before and while submitting your first app to the Autodesk App store. It explains the basic workflow

More information

Tokenization Integration Guide

Tokenization Integration Guide Tokenization Integration Guide RECURRING PAYMENTS AND TOKENIZATION PROFILE USING API INTEGRATION GUIDE VERSION 1.0 Table of Contents 1. Overview...5 1.1 Test Merchant Account v/s Live Merchant Account...5

More information

MasterPass Integration Guide. Version 6.2.2

MasterPass Integration Guide. Version 6.2.2 MasterPass Integration Guide Version 6.2.2 As of: 24.04.2018 Table of Contents About MasterPass... 4 General information about MasterPass... 4 Process flow charts... 5 Paygate interface... 6 Definitions...

More information

USER GUIDE for Simon Malls On-Line Resource Center. SimonResourceCenter.com

USER GUIDE for Simon Malls On-Line Resource Center. SimonResourceCenter.com USER GUIDE for Simon Malls On-Line Resource Center SimonResourceCenter.com Welcome to the Online Resource Center for printing and fulfillment. You have access to this site 24 hours a day, 7 days a week.

More information

ONE STEP CHECKOUT USER GUIDE

ONE STEP CHECKOUT USER GUIDE ONE STEP CHECKOUT USER GUIDE Version 1.0 www.advancedcheckout.com support@advancedcheckout.com Contents 1. ONE STEP CHECKOUT CONFIGURATION... 3 2. GENERAL CONFIGURATION... 3 3. DEFAULT SETTINGS... 5 4.

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

HOW TO GUIDE: PURCHASING VOUCHER CODES THROUGH ULEARNATHLETICS.COM

HOW TO GUIDE: PURCHASING VOUCHER CODES THROUGH ULEARNATHLETICS.COM HOW TO GUIDE: PURCHASING VOUCHER CODES THROUGH ULEARNATHLETICS.COM WHAT IS A VOUCHER CODE? A voucher code is a unique six-digit code that carries a monetary value. Voucher codes are not linked to specific

More information

CM Live Deal Documentation

CM Live Deal Documentation CM Live Deal Documentation Release 1.5.0-beta CMExtension April 12, 2015 Contents 1 Overview 3 1.1 Technical Requirements......................................... 3 1.2 Features..................................................

More information

Using McKesson Specialty Care Solutions US Oncology Order Center

Using McKesson Specialty Care Solutions US Oncology Order Center Using Specialty Care Solutions US Oncology Order The, mscs.mckesson.com, is an online destination that provides easy access to everything you need to manage your purchasing relationship with Specialty

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

Quality Inspection Management Implementation

Quality Inspection Management Implementation Oracle SCM Cloud Quality Inspection Management Implementation Activity Guide Important! You ve been assigned a unique, two-digit student number for this course. In the following pages, wherever you see

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

Customer Instructions Manual

Customer Instructions Manual 2017 Customer Instructions Manual B2B Web Tool by LALIZAS Version: 05 13/9/2017 Contents 01 ORDER... 2 01.1 QUICK ORDER... 2 01.1.1 QUICK ORDER WITH CSV FILE... 4 01.2 STANDARD ORDER... 7 02 OFFERS...

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

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

VALO Commerce. Beam Suntory User Guide

VALO Commerce. Beam Suntory User Guide VALO Commerce Beam Suntory User Guide Beam Suntory User Guide Access Your VALO Commerce Site through CONNECT Navigate to https://intlconnect.beamsuntory.com and click on the InnerWorkings tile to access

More information

API Integration Guide

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

More information