+ All Categories
Home > Documents > © 2011 Amazon.com, Inc. or its Affiliates Sign-Up for CBA Select “Sign up for Checkout by...

© 2011 Amazon.com, Inc. or its Affiliates Sign-Up for CBA Select “Sign up for Checkout by...

Date post: 02-Jan-2016
Category:
Upload: rodger-bryant
View: 217 times
Download: 2 times
Share this document with a friend
Popular Tags:
18
© 2011 Amazon.com, Inc. or its Affiliates Sign-Up for CBA Select “Sign up for Checkout by Amazon”.
Transcript
Page 1: © 2011 Amazon.com, Inc. or its Affiliates Sign-Up for CBA Select “Sign up for Checkout by Amazon”.

© 2011 Amazon.com, Inc. or its Affiliates

Sign-Up for CBA

• Select “Sign up for Checkout by Amazon”.

Page 2: © 2011 Amazon.com, Inc. or its Affiliates Sign-Up for CBA Select “Sign up for Checkout by Amazon”.

© 2011 Amazon.com, Inc. or its Affiliates

Login into Seller Central• Login into Seller Central (https://sellercentral.amazon.co

m) with the credentials created in the last slide.

Page 3: © 2011 Amazon.com, Inc. or its Affiliates Sign-Up for CBA Select “Sign up for Checkout by Amazon”.

© 2011 Amazon.com, Inc. or its Affiliates

Select Inline Checkout

Page 4: © 2011 Amazon.com, Inc. or its Affiliates Sign-Up for CBA Select “Sign up for Checkout by Amazon”.

© 2011 Amazon.com, Inc. or its Affiliates

Select “Get Started with Inline Checkout”• “Get Started with Inline Checkout” button can be found

towards the bottom of the webpage.

Page 5: © 2011 Amazon.com, Inc. or its Affiliates Sign-Up for CBA Select “Sign up for Checkout by Amazon”.

© 2011 Amazon.com, Inc. or its Affiliates

The Front – End Integration Steps are:

• The following steps are made easy by using the Code Generator which generates custom code for your environment.

Page 6: © 2011 Amazon.com, Inc. or its Affiliates Sign-Up for CBA Select “Sign up for Checkout by Amazon”.

© 2011 Amazon.com, Inc. or its Affiliates

Front – End Integration Touch points

Page 7: © 2011 Amazon.com, Inc. or its Affiliates Sign-Up for CBA Select “Sign up for Checkout by Amazon”.

© 2011 Amazon.com, Inc. or its Affiliates

Select Your Programming Language (Step 1 of 5)

Page 8: © 2011 Amazon.com, Inc. or its Affiliates Sign-Up for CBA Select “Sign up for Checkout by Amazon”.

© 2011 Amazon.com, Inc. or its Affiliates

Enter Destination URL (Step 2 of 5)

• Enter the Destination URL of your webpage where you want the customer to be redirected after they login with their CBA account.

• Please note that the Checkout button can be customized!

Page 9: © 2011 Amazon.com, Inc. or its Affiliates Sign-Up for CBA Select “Sign up for Checkout by Amazon”.

© 2011 Amazon.com, Inc. or its Affiliates

Add the Address Book Widget (Step 3 of 5)• This could be added to your shipping page.

Page 10: © 2011 Amazon.com, Inc. or its Affiliates Sign-Up for CBA Select “Sign up for Checkout by Amazon”.

© 2011 Amazon.com, Inc. or its Affiliates

Get Address detail (Step 3 of 5 contd.)

• This can be done by invoking the GetPurchaseContract API as a part of your server-side handling of the CONTINUE button on the Address selection page.

• The API will take the Purchase Contract ID as input. 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.

* Please check “Amazon Payments API Reference Guide” for more details, if required.

Page 11: © 2011 Amazon.com, Inc. or its Affiliates Sign-Up for CBA Select “Sign up for Checkout by Amazon”.

© 2011 Amazon.com, Inc. or its Affiliates

Add the Wallet Widget (Step 4 of 5)

Page 12: © 2011 Amazon.com, Inc. or its Affiliates Sign-Up for CBA Select “Sign up for Checkout by Amazon”.

© 2011 Amazon.com, Inc. or its Affiliates

Confirm and Place Order (Step 5 of 5)

Page 13: © 2011 Amazon.com, Inc. or its Affiliates Sign-Up for CBA Select “Sign up for Checkout by Amazon”.

© 2011 Amazon.com, Inc. or its Affiliates

Confirm and Place Order (Step 5 of 5 contd.)

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

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

• Once you set the items to the purchase contract, you 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.

* Please check “Amazon Payments API Reference Guide” for more details, if required.

Page 14: © 2011 Amazon.com, Inc. or its Affiliates Sign-Up for CBA Select “Sign up for Checkout by Amazon”.

© 2011 Amazon.com, Inc. or its Affiliates

Back End Integration Touch Points (MWS)• Order Management using Amazon's Marketplace Web Service (MWS)

consists of four XML feed types:

Order Report (Runs on a schedule, merchant calls Amazon)

Order Acknowledgement (confirmation of successful receipt) - Optional

Order Fulfillment (shipment confirmation with carrier/tracking info, customer credit card charged)

Order Adjustment (returns, cancellations, misc. credits)

Settlement Report (Runs on a schedule, merchant calls Amazon)

Page 15: © 2011 Amazon.com, Inc. or its Affiliates Sign-Up for CBA Select “Sign up for Checkout by Amazon”.

© 2011 Amazon.com, Inc. or its Affiliates

Order Management with MWS

• MWS requires authentication to make API calls using four basic identifiers: MWS Access Key ID MWS Secret Access Key CBA Merchant ID CBA Marketplace ID

• To obtain the MWS Access Keys Log into Seller Central Under the "Integration" tab select "MWS Access Key"

Page 16: © 2011 Amazon.com, Inc. or its Affiliates Sign-Up for CBA Select “Sign up for Checkout by Amazon”.

© 2011 Amazon.com, Inc. or its Affiliates

Order Management with MWS

• The Secret Access Key is hidden until you select "+Show"

Page 17: © 2011 Amazon.com, Inc. or its Affiliates Sign-Up for CBA Select “Sign up for Checkout by Amazon”.

© 2011 Amazon.com, Inc. or its Affiliates

Obtain Merchant & Marketplace IDs• In Seller Central, select "Settings" and "Checkout Pipeline Settings"

• Marketplace ID for CBA is AZ4B0ZS3LGLX

Page 18: © 2011 Amazon.com, Inc. or its Affiliates Sign-Up for CBA Select “Sign up for Checkout by Amazon”.

© 2011 Amazon.com, Inc. or its Affiliates

Appendix• Inline Checkout Guides (Front End)

• Inline Implementation Guide

http://amazonpayments.s3.amazonaws.com/documents/Inline_Checkout_Implementation_Guide_US.pdf

• Inline Checkout - API Reference Guide

http://amazonpayments.s3.amazonaws.com/documents/Inline_Checkout_API_Reference_Guide_US.pdf

• Inline Checkout - Widget Reference Guide

http://amazonpayments.s3.amazonaws.com/documents/Checkout_by_Amazon_Widget_Reference_Guide_US.pdf

• Marketplace Web Service (MWS – Back End) Help

• MWS Feeds and Specs

• https://developer.amazonservices.com/gp/mws/docs.html

• CBA specific MWS Guide

Adobe Acrobat Document


Recommended