VyomPay
  1. Payout APIs
VyomPay
  • Introduction
  • Process Flow
  • Error Codes
  • Common APIs
    • Wallet Balance Check
      POST
  • Payout APIs
    • Add NEFT/IMPS Beneficiary
      POST
    • Add UPI Beneficiary
      POST
    • Delete Beneficiary
      POST
    • Get Beneficiary List
      POST
    • NEFT/IMPS Validate Beneficiary
      POST
    • Validate UPI Beneficiary
      POST
    • Payout Transaction Request
      POST
    • Direct Payout Transaction Request
      POST
    • Transaction Status
      POST
    • Transaction Status By Request ID
      POST
    • Payout Transaction Complain
      POST
    • Payout Callback
      POST
    • Virtual Account Wallet Credit Callback
      POST
    • Service Bank List
      POST
    • Service List
      POST
  • Payin APIs
    • Generate Merchant Payment Link
      POST
    • Generate Merchant PG Order
      POST
    • Generate Merchant UPI PG QR
      POST
    • Merchant UTR Process
      POST
    • Check Order Status
      POST
    • Payin Callback
      POST
  1. Payout APIs

Service List

Testing
POST
/Payout/Fetch/get_services

Request

Body Params application/json
username
string 
required
api_key
password
string 
required
api_secret
requestid
string 
required
A unique id referencing the current request
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
Previous
Service Bank List
Next
Generate Merchant Payment Link
Built with