EliteVision
  1. Payments
EliteVision
  • Introduction
  • Process Flow
  • Error Codes
  • Authentication
    • Generate Token
      POST
  • Account
    • Get Account Status
      GET
    • Save Profile Image
      POST
  • Payments
    • Fund Transfer
      POST
    • Fetch Transaction Details
      GET
  • Utilities
    • Check IFSC Code
      GET
  1. Payments

Fund Transfer

POST
https://api.elitevis.com/v1/merchant-service/fund-transfer

Request

Body Params application/json
name
string 
required
email
string 
required
phone
string 
required
bankAccount
string 
required
ifsc
string 
required
amount
integer 
required
paymentMode
string 
required
referenceId
string 
required
merchantId
string 
required
Example
{
    "name": "Rajesh Sharma",
    "email": "sharma.rajesh@outlook.in",
    "phone": "9876543210",
    "bankAccount": "90000900009000",
    "ifsc": "UTIB0000001",
    "amount": "10",
    "paymentMode": "IMPS",
    "referenceId": 508050754416,
    "merchantId": "08810816"
}

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://api.elitevis.com/v1/merchant-service/fund-transfer' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "Rajesh Sharma",
    "email": "sharma.rajesh@outlook.in",
    "phone": "9876543210",
    "bankAccount": "90000900009000",
    "ifsc": "UTIB0000001",
    "amount": "10",
    "paymentMode": "IMPS",
    "referenceId": 508050754416,
    "merchantId": "08810816"
}'

Responses

🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2025-01-29 04:36:32
Previous
Save Profile Image
Next
Fetch Transaction Details
Built with