v2025-01-01
- Overview
- Orders
- Payments
- Payment Links
- Refunds
- Customers
- Payment Methods
- Offers
- Settlements
- Simulation
- Utilities
Get Fund Source Details
Use this API to get the details of the fund source.
GET
/
v1
/
fundsources
/
{paymentInstrumentId}
Copy
curl --request GET \
--url https://sandbox.cashfree.com/payout/v1/fundsources/{paymentInstrumentId}
Copy
{
"status": "SUCCESS",
"subCode": "200",
"message": "FundSource Details Retrieved",
"data": {
"paymentInstrumentId": "<string>",
"virtualAccountNumber": "<string>",
"id": 123,
"fsDisplayType": "Bank Account",
"fsDescription": "Main operational account",
"accountHolderName": "John Doe",
"bankName": "Bank of India",
"balance": "1000.00",
"availableBalance": "950.00",
"fundsOnHold": "50.00",
"overdraft": "0.00",
"bankAccount": "1234567890",
"ifsc": "BOFA0XXXXXX",
"addedOn": "2024-01-01T12:00:00Z",
"updatedOn": "2024-08-01T12:00:00Z",
"fsName": "Operational Account",
"displayName": "Main Account",
"virtualAccount": "VA1234567890",
"status": "ACTIVE"
}
}
Path Parameters
It is the unique ID of the payment instrument.
Response
200
application/json
Fund source details retrieved
The response is of type object
.
Copy
curl --request GET \
--url https://sandbox.cashfree.com/payout/v1/fundsources/{paymentInstrumentId}
Copy
{
"status": "SUCCESS",
"subCode": "200",
"message": "FundSource Details Retrieved",
"data": {
"paymentInstrumentId": "<string>",
"virtualAccountNumber": "<string>",
"id": 123,
"fsDisplayType": "Bank Account",
"fsDescription": "Main operational account",
"accountHolderName": "John Doe",
"bankName": "Bank of India",
"balance": "1000.00",
"availableBalance": "950.00",
"fundsOnHold": "50.00",
"overdraft": "0.00",
"bankAccount": "1234567890",
"ifsc": "BOFA0XXXXXX",
"addedOn": "2024-01-01T12:00:00Z",
"updatedOn": "2024-08-01T12:00:00Z",
"fsName": "Operational Account",
"displayName": "Main Account",
"virtualAccount": "VA1234567890",
"status": "ACTIVE"
}
}
Assistant
Responses are generated using AI and may contain mistakes.