Add Pay Later messages
Follow these steps to integrate Pay Later messages
DocsCurrentLast updated: November 25th 2023, @ 8:25:22 am
Know before you code
- Complete Get started to set up your PayPal account, client ID, and sandbox emails for testing.
- Complete a standard PayPal checkout integration (recommended).
Render Pay Later messaging and buttons
Choose where you want to render the Pay Later messaging, and PayPal automatically displays the most appropriate message. You can also customize the formatting using configuration attributes. For more details, see message placement.
- Add the PayPal JavaScript SDK code to your product and checkout pages.
- Replace
YOUR_CLIENT_ID
with your client ID. - To display messaging with a different payment amount, change the
120.00
indata-pp-amount="120.00"
.
<script src="https://www.paypal.com/sdk/js?client-id=YOUR-CLIENT-ID¤cy=EUR&components=messages,buttons&enable-funding=paylater">
</script>
<div id="paypal-button-container"></div>
<script>
paypal.Buttons({
createOrder: function(data, actions) {
return actions.order.create({
purchase_units: [{
amount: {
value: '120.00'
}
}]
});
}
}).render('#paypal-button-container');
</script>
<div
data-pp-message
data-pp-amount="120.00">
</div>
Step result
Our example renders a Paga en 3 plazos message that displays each payment amount for 40€. However, a different message could render, based on the amount passed through data-pp-amount
.
Test and go live
1. Test Pay Later transactions
- Log in to your buyer account in your sandbox.
- On the PayPal Checkout page, choose PayPal as your payment method at the time of purchase.
- Select Paga en 3 plazos as the payment option.
- Follow the on-screen instructions to send a payment to your merchant account in your sandbox.
- Log in to your merchant sandbox account.
- Confirm that the money successfully moved into the merchant account.
To learn more about about the PayPal sandbox, see the sandbox testing guide.
2. Test Pay Later messaging
- Within the PayPal JavaScript SDK, replace
YOUR_CLIENT_ID
with your sandbox client ID. - Confirm that Pay Later messaging displays in all appropriate pages.
3. Go live
- Change all references to your sandbox API credentials to live credentials. This includes changing the sandbox client ID in the PayPal JavaScript SDK to call in your HTML.
- If you created or updated pages on a website, move that code from the test environment to the live environment.
If you want to test live Pay Later transactions using real funds and non-sandbox PayPal accounts, ensure the following:
- The business account receiving the money can’t also make the purchase.
- Don't use a personal account with the same information as the business account, as these accounts might experience restrictions.
Troubleshooting
Message components, console warnings, and errors include configuration attributes and object validations. Configuration properties have distinct validation checks for input formatting and values. For a full list of accepted options, see the reference.
If validations fail, the developer console in your web browser displays warning messages that inform you which property is invalid and what you should do to resolve the issue. Depending on the message type, the library attempts to fall back to the default values.
Other messaging options
![]() | ![]() |
Customization Options You can modify the style and layout of your messages. | Advanced JavaScript Options Explore advanced configurations and integrations with JavaScript. |
Get started | Get started |