API Test keys

API Test keys

Capture a Payment

POST
/v1/payments/:id/capture

Click to copy

Use this endpoint to change the payment status from authorized to captured. Attempting to capture a payment whose status is not authorized will produce an error.

  • After the customer's bank authorises the payment, you must verify if the authorised amount deducted from the customer's account is the same as the amount paid by the customer on your website or app.
  • You can of payments on the Razorpay Dashboard.

Is this page helpful?

Curl

change language

change language

1
curl -u [YOUR_KEY_ID]:[YOUR_KEY_SECRET] \
2
-H 'content-type: application/json' \
3
-X POST https://api.razorpay.com/v1/payments/pay_29QQoUBi66xm2f/capture \
4
-d '{
5
"amount": 1000,
6
"currency": "INR"
7
}'

Success

Failure

1
{
2
"id": "pay_G3P9vcIhRs3NV4",
3
"entity": "payment",
4
"amount": 1000,
5
"currency": "INR",
6
"status": "captured",
7
"order_id": "order_GjCr5oKh4AVC51",
8
"invoice_id": null,
9
"international": false,
10
"method": "card",
11
"amount_refunded": 0,
12
"refund_status": null,
13
"captured": true,
14
"description": "Payment for Adidas shoes",
15
"card_id": "card_KOdY30ajbuyOYN",
16
"bank": null,
17
"wallet": null,
18
"vpa": null,
19
"email": "gaurav.kumar@example.com",
20
"contact": "9000090000",
21
"customer_id": "cust_K6fNE0WJZWGqtN",
22
"token_id": "token_KOdY$DBYQOv08n",
23
"notes": [],
24
"fee": 1,
25
"tax": 0,
26
"error_code": null,
27
"error_description": null,
28
"error_source": null,
29
"error_step": null,
30
"error_reason": null,
31
"acquirer_data": {
32
"authentication_reference_number": "100222021120200000000742753928"
33
},
34
"created_at": 1605871409
35
}
Path Parameters
id

*

string

Unique identifier of the payment to be captured.

Request Parameters
amount

*

integer

The amount to be captured (should be equal to the order amount, in the smallest unit of the currency). While creating a capture request, in the amount field, enter only the amount associated with the order that is stored in your database.

currency

*

string

ISO code of the currency in which the payment was made. Refer to the

.

Response Parameters
id
string

Unique identifier of the payment.

entity
string

Indicates the type of entity.

amount
integer

The payment amount in currency subunits. For example, for an amount of ₹1.00 enter 100.

currency
string

The currency in which the payment is made. Refer to the list of

that we support.

status
string

The status of the payment. Possible values:

  • created
  • authorized
  • captured
  • refunded
  • failed

method
string

The payment method used for making the payment. Possible values:

  • card
  • netbanking
  • wallet
  • emi
  • upi

order_id
string

Order id, if provided. Know more about

.

description
string

Description of the payment, if any.

international
boolean

Indicates whether the payment is done via an international card or a domestic one.

refund_status
string

The refund status of the payment. Possible values:

  • null
  • partial
  • full

amount_refunded
integer

The amount refunded in currency subunits. For example, if amount_refunded = 100, it is equal to ₹1.00.

captured
boolean

Indicates if the payment is captured.

email
string

Customer email address used for the payment.

contact
string

Customer contact number used for the payment.

fee
integer

Fee (including GST) charged by Razorpay.

tax
integer

GST charged for the payment.

error_code
string

Error that occurred during payment. For example, BAD_REQUEST_ERROR.

error_description
string

Description of the error that occurred during payment. For example, Payment processing failed because of incorrect OTP.

error_source
string

The point of failure. For example, customer.

error_step
string

The stage where the transaction failure occurred. The stages can vary depending on the payment method used to complete the transaction. For example, payment_authentication.

error_reason
string

The exact error reason. For example, incorrect_otp.

notes
json object

Contains user-defined fields, stored for reference purposes.

created_at
integer

Timestamp, in UNIX format, on which the payment was created.

card_id
string

The unique identifier of the card used by the customer to make the payment.

card
object

Details of the card used to make the payment.

Show child parameters (9)

upi
object

Details of the UPI payment received. Only applicable if method is upi.

Show child parameters (3)

bank
string

The 4-character bank code which the customer's account is associated with. For example, UTIB for Axis Bank.

vpa
string

The customer's VPA (Virtual Payment Address) or UPI id used to make the payment. For example, gauravkumar@exampleupi.

wallet
string

The name of the wallet used by the customer to make the payment. For example, payzapp.

acquirer_data
array

A dynamic array consisting of a unique reference numbers.

Show child parameters (3)

Errors

The API <key/secret> provided is invalid.

Error Status: 4xx

The API credentials passed in the API call differ from the ones generated on the Dashboard.

Solution

Capture amount must be equal to the amount authorized.

Error Status: 400

  • The capture amount is incorrect.
  • The amount you are trying to capture differs from the authorised amount .

Solution

This payment has already been captured.

Error Status: 400

You are trying to capture an already captured payment.

Solution

The id provided does not exist

Error Status: 400

The payment_id provided is incorrect.

Solution

The requested URL was not found on the server.

Error Status: 400

The URL is incorrect.

Solution

The amount must be an integer

Error Status: 400

The amount specified is incorrect.

Solution

Capture a Payment

POST
/v1/payments/:id/capture

Click to copy

Use this endpoint to change the payment status from authorized to captured. Attempting to capture a payment whose status is not authorized will produce an error.

  • After the customer's bank authorises the payment, you must verify if the authorised amount deducted from the customer's account is the same as the amount paid by the customer on your website or app.
  • You can of payments on the Razorpay Dashboard.

Is this page helpful?

Path Parameters
id

*

string

Unique identifier of the payment to be captured.

Request Parameters
amount

*

integer

The amount to be captured (should be equal to the order amount, in the smallest unit of the currency). While creating a capture request, in the amount field, enter only the amount associated with the order that is stored in your database.

currency

*

string

ISO code of the currency in which the payment was made. Refer to the

.

Response Parameters
id
string

Unique identifier of the payment.

entity
string

Indicates the type of entity.

amount
integer

The payment amount in currency subunits. For example, for an amount of ₹1.00 enter 100.

currency
string

The currency in which the payment is made. Refer to the list of

that we support.

status
string

The status of the payment. Possible values:

  • created
  • authorized
  • captured
  • refunded
  • failed

method
string

The payment method used for making the payment. Possible values:

  • card
  • netbanking
  • wallet
  • emi
  • upi

order_id
string

Order id, if provided. Know more about

.

description
string

Description of the payment, if any.

international
boolean

Indicates whether the payment is done via an international card or a domestic one.

refund_status
string

The refund status of the payment. Possible values:

  • null
  • partial
  • full

amount_refunded
integer

The amount refunded in currency subunits. For example, if amount_refunded = 100, it is equal to ₹1.00.

captured
boolean

Indicates if the payment is captured.

email
string

Customer email address used for the payment.

contact
string

Customer contact number used for the payment.

fee
integer

Fee (including GST) charged by Razorpay.

tax
integer

GST charged for the payment.

error_code
string

Error that occurred during payment. For example, BAD_REQUEST_ERROR.

error_description
string

Description of the error that occurred during payment. For example, Payment processing failed because of incorrect OTP.

error_source
string

The point of failure. For example, customer.

error_step
string

The stage where the transaction failure occurred. The stages can vary depending on the payment method used to complete the transaction. For example, payment_authentication.

error_reason
string

The exact error reason. For example, incorrect_otp.

notes
json object

Contains user-defined fields, stored for reference purposes.

created_at
integer

Timestamp, in UNIX format, on which the payment was created.

card_id
string

The unique identifier of the card used by the customer to make the payment.

card
object

Details of the card used to make the payment.

Show child parameters (9)

upi
object

Details of the UPI payment received. Only applicable if method is upi.

Show child parameters (3)

bank
string

The 4-character bank code which the customer's account is associated with. For example, UTIB for Axis Bank.

vpa
string

The customer's VPA (Virtual Payment Address) or UPI id used to make the payment. For example, gauravkumar@exampleupi.

wallet
string

The name of the wallet used by the customer to make the payment. For example, payzapp.

acquirer_data
array

A dynamic array consisting of a unique reference numbers.

Show child parameters (3)

Errors

The API <key/secret> provided is invalid.

Error Status: 4xx

The API credentials passed in the API call differ from the ones generated on the Dashboard.

Solution

Capture amount must be equal to the amount authorized.

Error Status: 400

  • The capture amount is incorrect.
  • The amount you are trying to capture differs from the authorised amount .

Solution

This payment has already been captured.

Error Status: 400

You are trying to capture an already captured payment.

Solution

The id provided does not exist

Error Status: 400

The payment_id provided is incorrect.

Solution

The requested URL was not found on the server.

Error Status: 400

The URL is incorrect.

Solution

The amount must be an integer

Error Status: 400

The amount specified is incorrect.

Solution

Curl

change language

change language

1
curl -u [YOUR_KEY_ID]:[YOUR_KEY_SECRET] \
2
-H 'content-type: application/json' \
3
-X POST https://api.razorpay.com/v1/payments/pay_29QQoUBi66xm2f/capture \
4
-d '{
5
"amount": 1000,
6
"currency": "INR"
7
}'

Success

Failure

1
{
2
"id": "pay_G3P9vcIhRs3NV4",
3
"entity": "payment",
4
"amount": 1000,
5
"currency": "INR",
6
"status": "captured",
7
"order_id": "order_GjCr5oKh4AVC51",
8
"invoice_id": null,
9
"international": false,
10
"method": "card",
11
"amount_refunded": 0,
12
"refund_status": null,
13
"captured": true,
14
"description": "Payment for Adidas shoes",
15
"card_id": "card_KOdY30ajbuyOYN",
16
"bank": null,
17
"wallet": null,
18
"vpa": null,
19
"email": "gaurav.kumar@example.com",
20
"contact": "9000090000",
21
"customer_id": "cust_K6fNE0WJZWGqtN",
22
"token_id": "token_KOdY$DBYQOv08n",
23
"notes": [],
24
"fee": 1,
25
"tax": 0,
26
"error_code": null,
27
"error_description": null,
28
"error_source": null,
29
"error_step": null,
30
"error_reason": null,
31
"acquirer_data": {
32
"authentication_reference_number": "100222021120200000000742753928"
33
},
34
"created_at": 1605871409
35
}