- 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
Service Bank List
Testing
POST
/Payout/Fetch/getServiceBankList
Request
Body Params application/json
username
string
required
password
string
required
requestid
string
required
Example
{
"username": "********",
"password": "********",
"requestid": "eAHJpkTCOuRYW14fqGKsSv"
}
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/getServiceBankList' \
--header 'Content-Type: application/json' \
--data-raw '{
"username": "********",
"password": "********",
"requestid": "eAHJpkTCOuRYW14fqGKsSv"
}'
Responses
🟢200Service Bank List
application/json
Body
Resp_code
string
required
Resp_desc
string
required
data
array [object {4}]
required
bank_id
string
required
bank_name
string
required
bank_ifsc
string
required
service_code
string
required
Example
{
"Resp_code": "RCS",
"Resp_desc": "Request Completed Successfully",
"data": [
{
"bank_id": "144366",
"bank_name": "INDIAN OVERSEAS TEST",
"bank_ifsc": "IOBA0002183",
"service_code": "BOBPAY"
},
{
"bank_id": "144367",
"bank_name": "STATE BANK OF INDIA",
"bank_ifsc": "SBI00001234",
"service_code": "BOBPAY"
}
]
}
🟢200Service Bank List
Modified at 2025-04-10 11:29:43