- Introduction
- Process Flow
- Error Codes
- Common APIs
- Payout APIs
- Add NEFT/IMPS BeneficiaryPOST
- Add UPI BeneficiaryPOST
- Delete BeneficiaryPOST
- Get Beneficiary ListPOST
- NEFT/IMPS Validate BeneficiaryPOST
- Validate UPI BeneficiaryPOST
- Payout Transaction RequestPOST
- Direct Payout Transaction RequestPOST
- Transaction StatusPOST
- Transaction Status By Request IDPOST
- Payout Transaction ComplainPOST
- Payout CallbackPOST
- Virtual Account Wallet Credit CallbackPOST
- Service Bank ListPOST
- Service ListPOST
- Payin APIs
Transaction Status By Request ID
Testing
POST
/Payout/Fetch/transaction_status_by_id
Request
Body Params application/json
username
string
required
password
string
required
requestid
string
required
txn_requestid
string
required
txn_date
string
required
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 'https://uat.nandishatech.com/WS/v1/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
Resp_code
string
required
Resp_desc
string
required
data
object
required
txn_requestid
string
optional
txnid
string
optional
utr
string
optional
servicename
string
optional
servicetype
string
optional
servicekey
string
optional
txnamt
string
optional
txndt
string
optional
txnstatus
string
optional
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-04-10 11:57:20