Transaction Status Check
Use this API to check the status of initialized transaction
Headers
Name
Type
Description
Request Body
Name
Type
Description
{
"status": true,
"message": "Transaction retrieved successfully",
"data": {
"payment_id": "<payment_id>",
"merchant_email": "<merchant_email>",
"merchant_id": "<merchant_id>",
"status": "Success", // Can be Initialized, Success, Failed Or Dropped
"status_flag": 1, // 1 in case of Success otherwise 0
"payment_mode": "<payment_method_used>",
"rrn": "<bank_rrn_no>",
"order": {
"order_id": "<order_id>",
"product_name": "<product_name>",
"gross_amount": 10,
"gateway_fee": 0.2,
"currency": "INR",
"tax": 0.036
},
"customer": {
"name": "<customer_name>",
"email_id": "<customer_email>",
"mobile_no": "<customer_mobile>"
},
"shipping": {
"address": null,
"city": null,
"state": null,
"country": null,
"pincode": null
},
"billing": {
"address": null,
"city": null,
"state": null,
"country": null,
"pincode": null
},
"custom_field_1": "<custom_field_1>",
"custom_field_2": "<custom_field_2>",
"custom_field_3": "<custom_field_3>",
"custom_field_4": "<custom_field_4>",
"custom_field_5": "<custom_field_5>",
"date": "<txn_date>",
"signature": "<signature_value>"
}
}Signature Generation
Last updated