- 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 List
Testing
POST
/Payout/Fetch/get_services
Request
Body Params application/json
username
string
required
password
string
required
requestid
string
required
service_type
string
required
Example
{
"username": "********",
"password": "********",
"requestid": "yPVBzSgAzoGq3lEzGj7Z",
"service_type": "PAYOUT"
}
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/get_services' \
--header 'Content-Type: application/json' \
--data-raw '{
"username": "********",
"password": "********",
"requestid": "yPVBzSgAzoGq3lEzGj7Z",
"service_type": "PAYOUT"
}'
Responses
🟢200Service List
application/json
Body
Resp_code
string
required
Resp_desc
string
required
data
array [object {7}]
required
service_name
string
required
service_code
string
required
service_type
string
required
amount_exactness
null
required
is_bbps
null
required
status
string
required
params
array[string]
required
Example
{
"Resp_code": "RCS",
"Resp_desc": "Request Completed Successfully",
"data": [
{
"service_name": "Auto Collect To Virtual Account - IMPS",
"service_code": "ACIMPS",
"service_type": "PAYIN",
"amount_exactness": null,
"is_bbps": null,
"status": "ACTIVE",
"params": []
},
{
"service_name": "Auto Collect To Virtual Account - NEFT",
"service_code": "ACNEFT",
"service_type": "PAYIN",
"amount_exactness": null,
"is_bbps": null,
"status": "ACTIVE",
"params": []
},
{
"service_name": "Auto Collect To Virtual Account - RTGS",
"service_code": "ACRTGS",
"service_type": "PAYIN",
"amount_exactness": null,
"is_bbps": null,
"status": "ACTIVE",
"params": []
}
]
}
Modified at 2025-04-10 11:29:58