Payout APIs
- Overview
- Getting Started
- Account
- Authentication
V2
- Overview
- Transfers V2
- Beneficiary V2
- Webhooks Version V2
- Response Codes
V1
- Overview
- Batch Transfer V1.3
- Beneficiary
- Incidents
- Transfers
- Transfers V1.2
- Webhook Version V1
One Escrow
Get Fund Source Details
Use this API to get the details of the fund source.
curl --request GET \
--url https://sandbox.cashfree.com/payout/v1/fundsources/{paymentInstrumentId}
{
"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
It displays the status of the request (SUCCESS/FAILURE).
"SUCCESS"
It displays the sub code of the request.
"200"
It displays the outcome of the request.
"FundSource Details Retrieved"
Response data.
It displays the unique ID of the fund source.
123
It displays the type of the fund source.
"Bank Account"
It displays the description of the fund source.
"Main operational account"
It displays the name of the account holder.
"John Doe"
It displays the bank name.
"Bank of India"
It displays the balance amount in the fund source.
"1000.00"
It displays the available balance amount in the fund source.
"950.00"
It displays the amount on hold in the fund source.
"50.00"
It displays the overdraft amount of the fund source.
"0.00"
It displays the bank account information of the fund source.
"1234567890"
It displays the IFSC information.
"BOFA0XXXXXX"
It displays the date and time of the fund source when added.
"2024-01-01T12:00:00Z"
It displays the latest updation date and time of the fund source.
"2024-08-01T12:00:00Z"
It displays the name of the fund source.
"Operational Account"
It displays the display name of the fund source.
"Main Account"
It displays the virtual account information.
"VA1234567890"
It displays the status of the fund source.
"ACTIVE"
Was this page helpful?
curl --request GET \
--url https://sandbox.cashfree.com/payout/v1/fundsources/{paymentInstrumentId}
{
"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"
}
}