Advantages
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 million PayPal users around the world.
- No additional charges: PayPal defines the rates for transactions.
Onboarding Process to Enable PayPal
Watch this video to see the onboarding process to enable PayPal on your checkout form.Handy TipsThe PayPal section is visible only in the Live mode on the Dashboard.
To enable PayPal:
- Log in to the Dashboard.
- Navigate to Account & Settings → International 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.
Pendingon 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.
Integration Steps
If you are using Razorpay Server-to-Server integration, first you need to raise a request with our Support team to enable PayPal and complete the onboarding procedure. Follow the steps given below to integrate S2S JSON API and accept payments using PayPal. 1.1 Create an Order 1.2 Create a Payment 1.3 Handle Payment Success and Error Events 1.4 Verify Payment Signature 1.5 Integrate Payments Rainy Day Kit 1.6 Verify Payment Status1.1 Create an Order
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 Orders API. It is a server-side API call. Know how to authenticate Orders API.
- The
order_idreceived in the response should be passed to the checkout. This ties the order with the payment and secures the request from being tampered.
- Using the sample code on the Razorpay Postman Public Workspace.
- By manually integrating the API sample codes on your server.
Razorpay Postman Public Workspace
You can use the Postman workspace below to create an order:Handy TipsUnder the Authorization section in Postman, select Basic Auth and add the Key Id and secret as the Username and Password, respectively.You can create an order manually by integrating the API sample codes on your server.
API Sample Code
Use this endpoint to create an order using the Orders API. /ordersCurl
Success Response
Request Parameters
amount mandatory
: integer The transaction amount, expressed in the currency subunit. For example, for an actual amount of 299.35, the value of this field should be 29935.
currency mandatory
: string The currency in which the transaction should be made. Refer to the list of supported currencies. Length must be of 3 characters.
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 7000 is to be received from the customer in two installments of #1 - 5000, #2 - 2000, then you can set this value as 500000. This parameter should be passed only if partial_payment is true.
Response Parameters
Descriptions for the response parameters are present in the Orders Entity parameters table.Error Response Parameters
The error response parameters are available in the API Reference Guide.1.2 Create a Payment
Once an order is created, your next step is to create a payment. The following API will create a payment withwallet as the payment method:
/payments/create/json
Curl
Request Parameters
amount mandatory
: integer The transaction amount, expressed in the currency subunit. For example, for an actual amount of 299.35, the value of this field should be 29935.
currency mandatory
: string The currency in which the transaction should be made. Refer to the list of supported currencies. Length must be of 3 characters.
order_id mandatory
: string Unique identifier of the Order.
Know more about Orders API.
ip mandatory
: string Customer’s IP address.
email 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 value is wallet
wallet
: string Wallet code for the wallet used for the payment. Required if the method is wallet. Possible value is paypal.
Response Parameters
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.
1.3 Handle Payment Success and Error Events
Once the payment is completed by the customer, aPOST 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.
Success Callback
If the payment made by the customer is successful, the following fields are sent:razorpay_payment_idrazorpay_order_idrazorpay_signature
Callback Example
Failure Callback
If the payment has failed, the callback will contain details of the error. Refer to Errors for details.1.4 Verify Payment Signature
Signature verification is a mandatory step to ensure that Razorpay sends the callback. Therazorpay_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.
Generate Signature on your Server
Java
1.5 Integrate Payments Rainy Day Kit
Use Payments Rainy Day kit to overcome payments exceptions such as:1.6 Verify Payment Status
Handy TipsOn the Razorpay Dashboard, ensure that the payment status is
captured. Refer to the payment capture settings page to know how to capture payments automatically.You can track the payment status in three ways:
To verify the payment status from the Razorpay Dashboard:- Log in to the Razorpay Dashboard 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.
Example
If you have subscribed to theorder.paid webhook event, you will receive a notification every time a customer pays you for an order.
Poll Payment APIs to check the payment status.
Next Steps
Step 2: Test IntegrationSettlements
You receive the payments made using PayPal directly to your PayPal wallet. PayPal makes the settlements in INR.Refunds
Refunds - PayPal Balance RequiredEnsure you have sufficient balance in your PayPal account before you initiate a refund.
- Refunds can be initiated by you either from the Dashboard or by using the Refunds API.
- The refund amount is deducted from your PayPal account and credited to your customer’s PayPal account.