API Test keys

API Test keys

Fetch Payments Based on Orders

GET
/v1/orders/:id/payments

Click to copy

Use this endpoint to retrieve payments corresponding to an order.

Is this page helpful?

Curl

change language

change language

1
curl -u [YOUR_KEY_ID]:[YOUR_KEY_SECRET]
2
-X GET https://api.razorpay.com/v1/orders/order_DovFx48wjYEr2I/payments

Success

Failure

1
{
2
"entity": "collection",
3
"count": 1,
4
"items": [
5
{
6
"id": "pay_KbCaQOgY6QclC7",
7
"entity": "payment",
8
"amount": 1234,
9
"currency": "INR",
10
"status": "captured",
11
"order_id": "order_KbCZFK4mhbWLoO",
12
"invoice_id": null,
13
"international": false,
14
"method": "card",
15
"amount_refunded": 0,
16
"refund_status": null,
17
"captured": true,
18
"description": "Test Transaction",
19
"card_id": "card_KbCaQTTxBsAVLQ",
20
"card": {
21
"id": "card_KbCaQTTxBsAVLQ",
22
"entity": "card",
23
"name": "",
24
"last4": "3818",
25
"network": "RuPay",
26
"type": "debit",
27
"issuer": null,
28
"international": false,
29
"emi": false,
30
"sub_type": "consumer",
31
"token_iin": null
32
},
33
"bank": null,
34
"wallet": null,
35
"vpa": null,
36
"email": "gaurav.kumar@example.com",
37
"contact": "+919000090000",
38
"notes": {
39
"address": "Razorpay Corporate Office"
40
},
41
"fee": 25,
42
"tax": 0,
43
"error_code": null,
44
"error_description": null,
45
"error_source": null,
46
"error_step": null,
47
"error_reason": null,
48
"acquirer_data": {
49
"auth_code": "457282",
50
"authentication_reference_number": null
51
},
52
"created_at": 1667399043
53
}
54
]
55
}
Path Parameters
id

*

string

Unique identifier of the order for which you want to fetch payment details.

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

The id provided does not exist.

Error Status: 400

The order_id is missing.

Solution

_id is not a valid id.

Error Status: 400

The order_id provided is incorrect.

Solution

Fetch Payments Based on Orders

GET
/v1/orders/:id/payments

Click to copy

Use this endpoint to retrieve payments corresponding to an order.

Is this page helpful?

Path Parameters
id

*

string

Unique identifier of the order for which you want to fetch payment details.

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

The id provided does not exist.

Error Status: 400

The order_id is missing.

Solution

_id is not a valid id.

Error Status: 400

The order_id provided is incorrect.

Solution

Curl

change language

change language

1
curl -u [YOUR_KEY_ID]:[YOUR_KEY_SECRET]
2
-X GET https://api.razorpay.com/v1/orders/order_DovFx48wjYEr2I/payments

Success

Failure

1
{
2
"entity": "collection",
3
"count": 1,
4
"items": [
5
{
6
"id": "pay_KbCaQOgY6QclC7",
7
"entity": "payment",
8
"amount": 1234,
9
"currency": "INR",
10
"status": "captured",
11
"order_id": "order_KbCZFK4mhbWLoO",
12
"invoice_id": null,
13
"international": false,
14
"method": "card",
15
"amount_refunded": 0,
16
"refund_status": null,
17
"captured": true,
18
"description": "Test Transaction",
19
"card_id": "card_KbCaQTTxBsAVLQ",
20
"card": {
21
"id": "card_KbCaQTTxBsAVLQ",
22
"entity": "card",
23
"name": "",
24
"last4": "3818",
25
"network": "RuPay",
26
"type": "debit",
27
"issuer": null,
28
"international": false,
29
"emi": false,
30
"sub_type": "consumer",
31
"token_iin": null
32
},
33
"bank": null,
34
"wallet": null,
35
"vpa": null,
36
"email": "gaurav.kumar@example.com",
37
"contact": "+919000090000",
38
"notes": {
39
"address": "Razorpay Corporate Office"
40
},
41
"fee": 25,
42
"tax": 0,
43
"error_code": null,
44
"error_description": null,
45
"error_source": null,
46
"error_step": null,
47
"error_reason": null,
48
"acquirer_data": {
49
"auth_code": "457282",
50
"authentication_reference_number": null
51
},
52
"created_at": 1667399043
53
}
54
]
55
}