✒
✒
✒
✒
PaaS API Docs
Search…
✒
✒
✒
✒
PaaS API Docs
Getting Started
Authentication
Product Guide
Collect
Disburse
Use cases
Remittance
API References
Data population
User
Funds
Funding account widget
Get user funding account
Delete user funding account
Add a receive account
Get receive accounts
Payout
Transaction
Webhooks
Error Codes
Sandbox
Funds: Test Values
Transaction: Test Values
Changelog
2022
Powered By
GitBook
Get user funding account
Read on obtaining information on funding accounts added by a user
Get list of all funding accounts
You can view all the fundings accounts associated with a user.
GET /users/{{user_id}}/funds?type={{funding_source_type}}
Details
Request Sample
Response Sample
User funding account object details
Field
Type
Description
account_type
String
Type of bank account. Enumerated value CHECKING or SAVINGS
account_number
String
Last 4 digits of the funding account number
institution_name
String
Name of the institution/bank associated with the account
verification_status
String
Enumerated value: PENDING, VERIFIED, FAILED.
funding_source_type
String
Enumerated value: CARD, BANK_ACCOUNT
id
UUID
ID of the account
user_id
UUID
User’s ID
funding_source_name
String
Name of the funding account
type
String
Enumerated value BANK_ACCOUNT, CARD
Bank
1
curl --location -g --request GET '{{url}}/users/{{user_id}}/funds?type=BANK' \
2
--header 'X-Client-Id: {{client_id}}' \
3
--header 'X-Client-Secret: {{client_secret}}' \
4
--header 'Content-Type: application/json'
Copied!
Card
1
curl --location -g --request GET '{{url}}/users/{{user_id}}/funds?type=CARD' \
2
--header 'X-Client-Id: {{client_id}}' \
3
--header 'X-Client-Secret: {{client_secret}}' \
4
--header 'Content-Type: application/json'
Copied!
Bank
1
{
2
"account_holder_name": " ",
3
"account_number": "8901",
4
"funding_source_type": "BANK",
5
"id": UUID,
6
"institution_name": "FIRST GUARANTY BANK",
7
"user_id": UUID,
8
"verification_status": "VERIFIED"
9
}
Copied!
Card
1
{
2
"funding_source_name": "VISA-9991",
3
"funding_source_type": "CARD",
4
"id": UUID,
5
"institution_name": "VISA",
6
"user_id": UUID,
7
"verification_status": "VERIFIED"
8
}
Copied!
Get funding account by ID
You can get details of a particular funding account of a send user.
GET /users/{{user_id}}/funds/{{fund_id}}
Request Sample
Response Sample
1
curl --location -g --request GET '{{url}}/users/{{user_id}}/funds/{{fund_id}}' \
2
--header 'X-Client-Id: {{client_id}}' \
3
--header 'X-Client-Secret: {{client_secret}}' \
4
--header 'Content-Type: application/json'
Copied!
1
{
2
"funding_source_name": "VISA-9991",
3
"funding_source_type": "CARD",
4
"id": UUID,
5
"institution_name": "VISA",
6
"user_id": UUID,
7
"verification_status": "VERIFIED"
8
}
Copied!
Previous
Funding account widget
Next
Delete user funding account
Last modified
2mo ago
Copy link
Contents