PayPal
Integrate PayPal with Razorpay to accept International Payments.
PayPal is a payment method that you can integrate with Razorpay to accept payments in international currencies.
You can accept payments based on the transaction limit of your PayPal account. Know more about the other
.Integrating PayPal as a payment method offers you the following advantages:
- Better Success Rates: Enjoy up to 20% higher success rates.
- Faster Settlement time: Get paid on a T+1 settlement schedule.
- Wide user base: Reach Over 30 Crore PayPal users around the world.
- No additional charges: PayPal defines the rates for transactions.
Watch Out!
You can accept payments from the provided
.Watch this video to see the onboarding process to enable PayPal on your checkout form.
Handy Tips
The PayPal section is visible only in the Live mode on the Dashboard.
-
Log in to the
. -
Navigate to Account & Settings → Internatioanl payments (under Payment methods). Scroll to the PayPal section and click Link Account.
-
Upon redirection to PayPal:
- If you do not have a PayPal account, you need to complete the verification process and KYC. This will include confirming your email address by clicking on the link sent to you by PayPal.
- If you already have a PayPal account, you need to authorise Razorpay to accept payments.
You should now be able to see your PayPal enablement status set to
Pending
on your Razorpay Dashboard. PayPal will activate your account within 48 hours if all of the previous steps are successfully completed.You can now proceed with the integration. This depends on how you have integrated Razorpay on your website or application.
By default, your PayPal account is configured to receive USD payments. You can enable more currencies on your account from your PayPal Dashboard.
Watch Out!
- You should not use the same email ID for multiple MIDs.
- Each merchant should set up a separate PayPal account for each MID.
If you are using Razorpay Server-to-Server integration, first you need to raise a request with our
to enable PayPal and complete the .Follow the steps below to integrate S2S JSON API and accept payments using PayPal.
1.1
1.2
1.3
1.4
1.5
1.6
To process a payment, create a Razorpay Order to correspond with the order in your system. Send the order request parameters to the following endpoint:
Order is an important step in the payment process.
- An order should be created for every payment.
- You can create an order using the . It is a server-side API call. Know how to Orders API.
- The
order_id
received in the response should be passed to the checkout. This ties the order with the payment and secures the request from being tampered.
Use this endpoint to create an order using the Orders API.
curl -X POST https://api.razorpay.com/v1/orders-U [YOUR_KEY_ID]:[YOUR_KEY_SECRET]-H 'content-type:application/json'-d '{"amount": 100,"currency": "MYR","receipt": "qwsaq1","partial_payment": true,"first_payment_min_amount": 230,"notes": {"key1": "value3","key2": "value2"}}'
amount
mandatory
integer
The transaction amount, expressed in the currency subunit, such as Ringgit (in case of MY). For example, for an actual amount of MYR 299.35 , the value of this field should be 29935
.
currency
mandatory
string
The currency in which the transaction should be made. Length must be of 3 characters. For example, MYR
.
receipt
optional
string
Your receipt id for this order should be passed here. Maximum length is 40 characters.
notes
optional
json object
Key-value pair that can be used to store additional information about the entity. Maximum 15 key-value pairs, 256 characters (maximum) each. For example, "note_key": "Beam me up Scotty”
.
partial_payment
optional
boolean
Indicates whether the customer can make a partial payment. Possible values:
true
: The customer can make partial payments.false
(default): The customer cannot make partial payments.
first_payment_min_amount
optional
integer
Minimum amount that must be paid by the customer as the first partial payment. For example, if an amount of MYR 7,000.00 is to be received from the customer in two installments of #1 - RM 5,000, #2 - RM 2,000, then you can set this value as 500000
. This parameter should be passed only if partial_payment
is true
.
Descriptions for the response parameters are present in the
parameters table.The error response parameters are available in the
.Once an order is created, your next step is to create a payment. The following API will create a payment with wallet
as the payment method:
curl -u [YOUR_KEY_ID]:[YOUR_KEY_SECRET] \-X POST https://api.razorpay.com/v1/payments/create/json \-H "Content-Type: application/json" \-d '{"amount": "100","currency": "USD","email": "gaurav.kumar@example.com","contact": "+919000090000","order_id": "order_EAkbvXiCJlwhHR","ip": "198.29.65.27","method": "wallet","wallet": "paypal"}'
amount
mandatory
integer
Payment amount in the smallest currency sub-unit. For example, if the amount to be charged is MYR 299.00, then pass 29900
in this field.
currency
mandatory
string
Currency code for the currency in which you want to accept the payment. For example, MYR
.
order_id
mandatory
string
Unique identifier of the Order.
Know more about
ip
mandatory
string
Customer's IP address.
mandatory
string
Email address of the customer. Maximum length supported is 40 characters.
contact
mandatory
string
Phone number of the customer. Maximum length supported is 15 characters, inclusive of country code.
method
mandatory
string
Name of the payment method. Possible values are:
card
netbanking
wallet
emi
upi
cardless_emi
paylater
wallet
string
Wallet code for the wallet used for the payment. Required if the method is wallet
.
razorpay_payment_id
string
Unique identifier of the payment. Present for all responses.
next
array
A list of action objects available to you to continue the payment process. Present when the payment requires further processing.
action
string
An indication of the next step available to you to continue the payment process. Possible values:
redirect
: Use this URL to redirect customer to submit the OTP on the bank page.
url
string
URL to be used for the action indicated.
Once the payment is completed by the customer, a POST
request is made to the callback_url
provided in the payment request. The data contained in this request will depend on whether the payment was a success or a failure.
If the payment made by the customer is successful, the following fields are sent:
razorpay_payment_id
razorpay_order_id
razorpay_signature
{"razorpay_payment_id": "pay_29QQoUBi66xm2f","razorpay_order_id": "order_9A33XWu170gUtm","razorpay_signature": "9ef4dffbfd84f1318f6739a3ce19f9d85851857ae648f114332d8401e0949a3d"}
If the payment has failed, the callback will contain details of the error. Refer to
for details.Signature verification is a mandatory step to ensure that Razorpay sends the callback. The razorpay_signature
contained in the callback can be regenerated by your system and verified as follows.
Create a string to be hashed using the razorpay_payment_id
contained in the callback and the Order ID generated in the first step, separated by a |
. Hash this string using SHA256 and your API Secret.
generated_signature = hmac_sha256(order_id + "|" + razorpay_payment_id, secret);if (generated_signature == razorpay_signature) {payment is successful}
/*** This class defines common routines for generating* authentication signatures for Razorpay Webhook requests.*/public class Signature{private static final String HMAC_SHA256_ALGORITHM = "HmacSHA256";/*** Computes RFC 2104-compliant HMAC signature.* * @param data* The data to be signed.* @param key* The signing key.* @return* The Base64-encoded RFC 2104-compliant HMAC signature.* @throws* java.security.SignatureException when signature generation fails*/public static String calculateRFC2104HMAC(String data, String secret)throws java.security.SignatureException{String result;try {// get an hmac_sha256 key from the raw secret bytesSecretKeySpec signingKey = new SecretKeySpec(secret.getBytes(), HMAC_SHA256_ALGORITHM);// get an hmac_sha256 Mac instance and initialize with the signing keyMac mac = Mac.getInstance(HMAC_SHA256_ALGORITHM);mac.init(signingKey);// compute the hmac on input data bytesbyte[] rawHmac = mac.doFinal(data.getBytes());// base64-encode the hmacresult = DatatypeConverter.printHexBinary(rawHmac).toLowerCase();} catch (Exception e) {throw new SignatureException("Failed to generate HMAC : " + e.getMessage());}return result;}}
Use Payments Rainy Day kit to overcome payments exceptions such as:
Handy Tips
On the Dashboard, ensure that the payment status is captured
. Refer to the payment capture settings page to know how to
You can track the payment status in three ways:
To verify the payment status from the Dashboard:
- Log in to the and navigate to Transactions → Payments.
- Check if a Payment Id has been generated and note the status. In case of a successful payment, the status is marked as Captured.
You receive the payments made using PayPal directly to your PayPal wallet. PayPal makes the settlements in INR.
Refunds - PayPal Balance Required
Ensure you have sufficient balance in your PayPal account before you initiate a refund.
- Refunds can be initiated by you either from the or by using the .
- The refund amount is deducted from your PayPal account and credited to your customer's PayPal account.
Is this integration guide useful?
ON THIS PAGE