Our Amazon Pay Web Component allows you to offer Amazon Pay in your checkout flow. When clicking the Amazon Pay button, the component redirects the shopper to an Amazon Pay hosted page where they select the details of the purchase before reviewing and confirming the order on your website.
Requirements
Requirement | Description |
---|---|
Integration type | Make sure that you have an existing Web Components integration. |
Setup steps | Before you begin, add Amazon Pay in your test Customer Area. |
Register for Amazon Pay
Sign up for a merchant account on the Amazon Pay website. After the registration is complete, return to this page. Select the correct region for your account from the list below.
- EU Registration — For merchants with a legal entity in one of the following locations: Austria, Belgium, Cyprus, Denmark, France, Germany, Hungary, Ireland, Italy, Luxembourg, the Netherlands, Portugal, Spain, Sweden, or Switzerland. Select EUR as a currency in the registration page.
- UK Registration — For merchants with a legal entity in the United Kingdom.
- US Registration - For merchants with a legal entity in the United States.
Create an Amazon Pay Sandbox test buyer account
Use Sandbox to conduct end-to-end tests of your integration before going live. For details, see Amazon Pay Sandbox accounts. After creating an Amazon Pay Sandbox account, return to this page.
Get your PublicKeyId and give information to Adyen
Amazon Pay uses asymmetric encryption to secure communication. Therefore, you need a public/private key pair.
To set this up, you must have one of the following user roles.
- Merchant admin
- Manage API Credentials
- Log in to your Customer Area and select the merchant account you want to set up Amazon Pay for.
- Select Developers > API credentials. Select the web service user that you will use for Amazon Pay transactions.
- In Wallet payment methods > Amazon Pay certificate, select + Add.
- Select Generate key pair.
- Copy the the public key and send it to your Amazon Pay contact.
- Receive the
publicKeyId
from your Amazon Pay contact. - Send the following to our Support Team:
publicKeyId
amazonMerchantId
: You can find this in your Amazon Seller Central or ask your Amazon Pay contact for it.amazonStoreId
: You can find this in your Amazon Seller Central or ask your Amazon Pay contact for it.
We configure Amazon Pay for you after receiving your information.
Your Amazon publicKeyId
is unique to a single web service user. You cannot use the same publicKeyId
for multiple web service users.
Show Amazon Pay in your payment page
To show Amazon Pay Component on your payment page, proceed with the following steps:
-
Create a DOM element for Amazon Pay, placing it where you want the button to be rendered:
<div id="amazonpay_button-container"></div>
-
Create an instance of the Amazon Pay Component, specifying the following parameters:
Parameter | Description | Default |
---|---|---|
buttonColor |
Color of the Amazon Pay button. Supported values: Gold, LightGray, and DarkGray. | Gold |
deliverySpecifications |
Use the deliverySpecifications parameter to specify shipping restrictions for your shop, and prevent buyers from selecting unsupported addresses from their Amazon address book. See address restriction samples for examples of common use cases. Do not set this parameter if you are selling digital goods. In this case, set the productType parameter to PayOnly. |
{} |
environment |
test | |
locale |
Language used to render the button and text on Amazon Pay hosted pages. Please note that supported language(s) is dependent on the region that your Amazon Pay account was registered for. Supported values: en_GB, de_DE, fr_FR, it_IT, es_ES. | en_GB |
merchantId |
Amazon Pay merchant account identifier. | |
placement |
Placement of the Amazon Pay button on your website. Supported values: Home, Product, Cart, Checkout, Other. | Cart |
productType |
Product type selected for checkout. Supported values: PayAndShip — Offer checkout using the shopper's Amazon wallet and address book. Select this product type if you sell physical goods that you ship to the address associated with the shopper's Amazon account. PayOnly — Offer checkout using only the shopper's Amazon wallet. Select this product type if you do not need the shopper's shipping details, as you are selling digital goods. |
PayAndShip |
publicKeyId |
The publicKeyId from Step 3. |
|
returnUrl |
||
storeId |
Retrieve this value from Amazon Pay Integration Central. | |
chargePermissionType |
The type of charge permission requested. Supported values: OneTime — for a single payment. Recurring — for recurring payments. |
OneTime |
recurringMetadata
|
How often the shopper will be charged using a recurring charge permission, for example monthly or yearly. Required for payments with chargePermissionType Recurring. Specify a frequency even if you expect ad hoc charges. See Amazon Pay documentation more information. |
Here's an example of the Amazon Pay component instance:
const amazonPayComponent = checkout
.create('amazonpay', {
// Returned in the `/paymentMethods` response
configuration: {
merchantId: 'YOUR_MERCHANT_ID',
publicKeyId: 'YOUR_PUBLIC_KEY',
storeId: '...'
},
chargePermissionType: 'Recurring', // For a recurring payment
recurringMetadata: { // For a payment that happens once a month
frequency: {
unit: 'Month',
value: '1'
}
},
currency: 'EUR',
environment: 'test',
returnUrl: 'https://example.com/review_order'
})
.mount('#amazonpay_button-container');
This displays the Amazon Pay button. The button is responsive and inherits the size of the container element. For more information about how to render and resize the Amazon Pay component refer to the Amazon Pay documentation.
When the shopper clicks the Amazon Pay button, they are redirected to the Amazon website to log in and select the shipping and payment details.
Handle the first redirect
The shopper will be redirected back to the returnUrl
with the amazonCheckoutSessionId
attached to the URL. The returnUrl
should point to the order review page where the shopper can review the details selected from the Amazon account, and finalize the purchase. Use the amazonCheckoutSessionId
to create a new instance of the Amazon Pay component to retrieve shopper details and create an order.
-
Create a DOM element for the Confirm purchase button, placing it where you want it to be rendered:
<div id="amazonpay_order-container"></div>
-
Create an instance of the Amazon Pay component, and this time pass the
amazonCheckoutSessionId
along with theamount
object and areturnUrl
.The
returnUrl
set at this step should bring the shopper to the page where the logic to execute the payment will take place. ThisreturnUrl
should be different from the one used at the previous step.Optionally, you can also show a button to go back and change the selected payment details by setting
showChangePaymentDetailsButton
totrue
.const amazonPayComponent = checkout .create('amazonpay', { amount: { currency: 'EUR', value: 1000 }, amazonCheckoutSessionId: '...', returnUrl: 'https://example.com/process_payment', showChangePaymentDetailsButton: true // Optional }) .mount('#amazonpay_order-container');
-
Get the shopper details by calling the
getShopperDetails
method from the Component. Use shopper details such as email address, name, shipping address and billing address to populate your order review page, as shown in the Amazon Pay documentation for display shipping and payment info.amazonPayComponent.getShopperDetails() .then(details => { // Show shopper details });
When the shopper reviews the order and clicks the Order button, there is a second redirect to Amazon to update the checkout session state and enable the payment step.
Handle the second redirect
The shopper is now redirected back to the returnUrl
with the amazonCheckoutSessionId
again attached to the URL. Use the amazonCheckoutSessionId
once again to create a new instance of the Amazon Pay component to make the payment.
-
Create a DOM element for the component, placing it where you want it to be rendered. At this point of the flow, the Component doesn't show anything. This page executes the logic of the payment and handles any additional buyer interaction. The Component uses this node, for example, in case a 3D Secure 2 challenge needs to be displayed.
<div id="amazonpay_payment-container"></div>
-
Define a
handleOnSubmit
function to be passed to the Component configuration object as value for theonSubmit
parameter. The function should accept thestate.data
object from the Component as an input, and trigger the backend function you define which executes the /payments API call.onSubmit: (state, component) => { component.setStatus('loading'); // Merchant's function to make a payment return makePayment(state.data) .then(response => { component.setStatus('ready'); if (response.action) { // Handle additional action (3D Secure / redirect / other) component.handleAction(response.action); } else { // The merchant's function to show the final result or redirect to a final status page handleFinalResult(response); } }) .catch(error => { // Handle error; }); }
-
Create an instance of the Amazon Pay Component and pass the
amazonCheckoutSessionId
. This time, hide the Order button. After the Component is mounted, trigger thesubmit
function which should be defined in the Adyen Checkout constructor.const amazonPayComponent = checkout .create('amazonpay', { amazonCheckoutSessionId: '...', showOrderButton: false }) .mount('#amazonpay_payment-container'); amazonPayOrder.submit();
This will call the onSubmit
event, which contains a state.data
object. Pass the object to the server to make a payment and parse the result of the payment.
Make a payment
From your server, make a /payments request, specifying the following parameters:
paymentMethod
: Thestate.data.paymentMethod
from theonSubmit
event from your front end.returnUrl
: The URL where the shopper will be redirected back to after completing the payment. The URL should include the protocol:http://
orhttps://
. For example,https://your-company.com/checkout/
. You can also include your own additional query parameters, for example, shopper ID or order reference number.
The /payments response contains:
pspReference
: Adyen's unique reference for the payment.resultCode
: Authorised
Handle the decline flow
In case of a credit card decline due to card expiration or insufficient funds, redirect the shopper back to the Amazon Pay payment method selection page. You can do this by calling the handleDeclineFlow
from the Amazon Pay Component.
This flow lets you recover from a declined paymentas described in the Amazon Pay documentation.
onSubmit: async (state, component) => {
try {
const response = await makePayment(state.data);
// Check the result code
if (response.resultCode && checkPaymentResponse(response.resultCode)) {
// Show successful message
} else {
// Handle decline flow
amazonPayComponent.handleDeclineFlow();
}
} catch (error) {
// Fatal error
}
},
onError: (error) => {
if (error.resultCode) {
// Show payment failed message or start over the flow.
} else {
// Fatal error
}
}
Present the payment result
Use the resultCode
that you received in the /payments response to present the payment result to your shopper.
The resultCode
values you can receive for Amazon Pay are:
resultCode | Description | Action to take |
---|---|---|
Authorised | The payment was successful. | Inform the shopper that the payment has been successful. If you are using manual capture, you also need to capture the payment. |
Cancelled | The shopper cancelled the payment. | Ask the shopper whether they want to continue with the order, or ask them to select a different payment method. |
Error | There was an error when the payment was being processed. For more information, check the
refusalReason
field. |
Inform the shopper that there was an error processing their payment. |
Refused | The payment was refused. For more information, check the
refusalReason
field. |
Redirect the shopper back to the payment page and ask them to try the payment again using a different card. For more information on how to do this, check Amazon Pay's documentation. |
Additional resultCode
values are possible in case of the 3D Secure authentication flow. For more information, refer to Result codes.
If the shopper failed to return to your website or app, wait for webhooks to know the outcome of the payment. The webhooks you can receive for Amazon Pay are:
eventCode | success field | Description | Action to take |
---|---|---|---|
AUTHORISATION | false | The transaction failed. | Cancel the order and inform the shopper that the payment failed. |
AUTHORISATION | true | The shopper successfully completed the payment. | Inform the shopper that the payment has been successful and proceed with the order. |
OFFER_CLOSED | true | The shopper did not complete the payment. | Cancel the order and inform the shopper that the payment timed out. |
Optional. Sign out from Amazon
After the transaction is finished, and the result is shown to the shopper, display a button to let them sign out from the Amazon account.
-
Create a DOM element for the Sign out button, placing it where you want it to be rendered:
<div id="amazonpay_signout"></div>
-
Create an instance of the Amazon Pay Component and pass the
amazonCheckoutSessionId
along withshowSignOutButton
set to true.const amazonPayComponent = checkout .create('amazonpay', { amazonCheckoutSessionId: '...', showSignOutButton: true }) .mount('#amazonpay_signout');
Recurring payments
We support recurring transactions for Amazon Pay. To make recurring payments, you need to:
Create a token
To create a token, include in your /payments request:
storePaymentMethod
: true- shopperReference: Your unique identifier for the shopper.
When the payment has been settled, you receive a webhook containing:
eventCode
: RECURRING_CONTRACToriginalReference
: ThepspReference
of the initial payment.pspReference
: This is the token that you need to make recurring payments for this shopper.
Make sure that your server is able to receive RECURRING_CONTRACT as part of your standard webhooks. You can enable the RECURRING_CONTRACT event code in the webhook settings page.
Make a payment with a token
To make a payment with the token, include in your /payments request:
-
paymentMethod.storedPaymentMethodId
: ThepspReference
from the RECURRING_CONTRACT.You can also get this value using the /listRecurringDetails endpoint.
-
shopperReference
: The unique shopper identifier that you specified when creating the token. -
shopperInteraction
: ContAuth. -
recurringProcessingModel
: Subscription or UnscheduledCardOnFile.
For more information about the shopperInteraction
and recurringProcessingModel
fields, refer to Tokenization.
Test and go live
To test Amazon Pay, you must follow the Amazon Pay testing guidelines.
You can check the status of an Amazon Pay test payment in your Customer Area > Transactions > Payments.
Before you can accept live Amazon Pay payments, you need to submit a request for Amazon Pay in your live Customer Area.