PayPal Credit
Overview
PayPal Credit is an open end (revolving), reusable line of credit that when approved, will automatically be added to the shopper’s PayPal account.
With PayPal Credit, the shopper can enjoy the flexibility to pay overtime for everyday purchases. PayPal Credit can be used just about anywhere PayPal is accepted online. PayPal Credit is subject to credit approval and is issued by Synchrony Bank.
How to apply for PayPal Credit
When a shopper applies for PayPal Credit, they’ll be asked to provide the date of birth, net income after taxes, the last 4 digits of the Social Security number and agree to the Terms and Conditions. The shopper will be provided any required disclosures in electronic form. The shopper will know within seconds if they are approved. If approved, the PayPal Credit payment instrument will automatically appear in the PayPal account where the shopper can start to use it right away.
PayPal Credit is subject to credit approval and is offered by Synchrony Bank.
Availability
PayPal Credit is currently available for US residents who are of legal age in their state of residence.
Supported currencies: USD
Supporting recurring payments: Yes
Benefits
- Increased conversion rates - buy now, pay later (BNPL) options like PayPal Credit reduce friction at checkout by allowing customers to defer payments.
- Higher average order value (AOV) - Customers using PayPal Credit often spend more per transaction, boosting AOV.
- Immediate payment to vendors as they are paid upfront and in full by PayPal, while PayPal handles customer financing and collections. No additional risk or delay in funds settlement for the merchant.
Activate PayPal Credit
Steps to activate PayPal Credit in Control Panel:
- Navigate to Dashboard.
- Go to Setup.
- Click on Ordering options.
- Click on Payment methods.
- Activate PP Credit from the list.
Shopper flow
- The shopper initiates an online purchase.
- Once the products for purchase are selected, the 2Checkout checkout page will be displayed.
- The shopper selects PayPal Credit as a payment method and continues the checkout process.
- On the confirmation page, the shopper clicks on the PayPal Credit button.
- The shopper logs into it’s PayPal account.
- Shopper selects PayPal Credit as the payment option.
- If the shopper has not yet applied for PayPal Credit, they will follow an application process.
- If the shopper has already applied for PayPal Credit, they place the order by clicking the Continue to Review Order button.
- Once all steps are completed, the Finish page is displayed, as the order is confirmed.
PayPal credit through API
If PayPal Credit is available to your shoppers, you must also provide them with information on how they can apply for a credit line and the terms applicable. 2Checkout offers an endpoint that allows you to retrieve the latest version of this information in a web-ready format: https://secure.2checkout.com/paypal-credit.php
Parameters
Parameter |
Type |
Required |
Description |
---|---|---|---|
merchantCode |
String |
Yes |
Merchant unique identifier number. |
totalAmount |
Float |
Yes |
The amount of all products that the shopper has added to the cart. It’s displayed in USD. |
country |
String |
Yes |
Billing country of the shopper. |
Request sample
<?php
$url = "https://secure.2checkout.com/paypal-credit.php?merchantCode=MERCHANT_CODE&totalAmount=100&country=US";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$response = curl_exec($ch);
if (curl_errno($ch)) {
echo "cURL Error: " . curl_error($ch);
} else {
echo "Response:\n" . $response;
}
curl_close($ch);
?>
Response
Message |
Type |
Description |
---|---|---|
HTML content |
Success - HTML content |
Web-ready response which should be displayed to the shopper. |
Invalid seller |
Error - Text |
Merchant Code is incorrect |
PayPal credit terminal is not active |
Error – Text |
Your account does not support paypal credit or it is not enabled. Check the Activate Paypal Credit section. |
Missing parameter |
Error – Text |
Check the mentioned parameter is present in the request. |