Adhishwar
  1. Payout APIs
Adhishwar
  • Introduction
  • Process Flow
  • Error Codes
  • Common APIs
    • Wallet Balance Check
      POST
  • Payout APIs
    • Add NEFT/IMPS Beneficiary
      POST
    • Delete Beneficiary
      POST
    • Get Beneficiary List
      POST
    • NEFT/IMPS Validate Beneficiary
      POST
    • Payout Transaction Request
      POST
    • Direct Payout Transaction Request
      POST
    • Transaction Status
      POST
    • Transaction Status By Request ID
      POST
    • Payout Callback
      POST
    • Service Bank List
      POST
    • Service List
      POST
  1. Payout APIs

Transaction Status By Request ID

Testing
POST
/Payout/Fetch/transaction_status_by_id

Request

Body Params application/json

Example
{
    "username": "********",
    "password": "********",
    "requestid": "d2qL9GvXpfE9i6zrs3Nu",
    "txn_requestid": "d2qL9GvXpfE9i6zrs3Nu",
    "txn_date": "2023-08-31"
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/Payout/Fetch/transaction_status_by_id' \
--header 'Content-Type: application/json' \
--data-raw '{
    "username": "********",
    "password": "********",
    "requestid": "d2qL9GvXpfE9i6zrs3Nu",
    "txn_requestid": "d2qL9GvXpfE9i6zrs3Nu",
    "txn_date": "2023-08-31"
}'

Responses

🟢200Transaction Status By Request ID
application/json
Body

Example
{
    "Resp_code": "RCS", //Transaction status to be considered only if RCS code is received in the status check response. In absence of this particular index value, status response need not to be considered and status check should be tried again unless RCS code is received as the particular index value.
    "Resp_desc": "Request Completed Successfully",
    "data": {
        "txn_requestid": "d2qL9GvXpfE9i6zrs3Nu",
        "txnid": "W230831120311EYKA",
        "utr": "W230831120311VUGQ",
        "servicename": "TRANSACTION REFUND",
        "servicetype": "WALLET",
        "servicekey": "WLT09",
        "txnamt": "100.00",
        "txndt": "2023-08-31 12:03:11",
        "txnstatus": "SUCCESS"
    }
}
Modified at 2025-07-01 11:24:06
Previous
Transaction Status
Next
Payout Callback
Built with