· 5 years ago · May 17, 2020, 04:26 PM
1<form action="https://www.example.com/payment/success/" method="POST">
2<script
3 src="https://checkout.razorpay.com/v1/checkout.js"
4 data-key="YOUR_KEY_ID" // Enter the Test API Key ID generated from Dashboard → Settings → API Keys
5 data-amount="29935" // Amount is in currency subunits. Hence, 29935 refers to 29935 paise or ₹299.35.
6 data-currency="INR"//You can accept international payments by changing the currency code. Contact our Support Team to enable International for your account
7 data-order_id="order_CgmcjRh9ti2lP7"//Replace with the order_id generated by you in the backend.
8 data-buttontext="Pay with Razorpay"
9 data-name="Acme Corp"
10 data-description="A Wild Sheep Chase is the third novel by Japanese author Haruki Murakami"
11 data-image="https://example.com/your_logo.jpg"
12 data-prefill.name="Gaurav Kumar"
13 data-prefill.email="gaurav.kumar@example.com"
14 data-theme.color="#F37254"
15></script>
16<input type="hidden" custom="Hidden Element" name="hidden">
17</form>