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.
Object Details
Request Sample
Response Sample
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
curl --location -g --request GET '{{url}}/users/{{user_id}}/funds?type=BANK' \
--header 'X-Client-Id: {{client_id}}' \
--header 'X-Client-Secret: {{client_secret}}' \
--header 'Content-Type: application/json'
Card
curl --location -g --request GET '{{url}}/users/{{user_id}}/funds?type=CARD' \
--header 'X-Client-Id: {{client_id}}' \
--header 'X-Client-Secret: {{client_secret}}' \
--header 'Content-Type: application/json'
Bank
[{
"id": UUID,
"user_id": UUID,
"account_number": "8901",
"funding_source_name": "TEST",
"funding_source_type": "BANK",
"institution_name": "CITIBANK NA",
"verification_status": "VERIFIED"
}]
Card
[{
"id": UUID,
"user_id": UUID,
"account_number": "9991",
"funding_source_name": "VISA-9991",
"funding_source_type": "CARD",
"institution_name": "VISA",
"verification_status": "VERIFIED"
}]
Get funding account by ID
You can get details of a particular funding account of a send user.
Request Sample
Response Sample
curl --location -g --request GET '{{url}}/users/{{user_id}}/funds/{{fund_id}}' \
--header 'X-Client-Id: {{client_id}}' \
--header 'X-Client-Secret: {{client_secret}}' \
--header 'Content-Type: application/json'
{
"id": UUID,
"user_id": UUID,
"account_number": "9991",
"funding_source_name": "VISA-9991",
"funding_source_type": "CARD",
"institution_name": "VISA",
"verification_status": "VERIFIED"
}
Last modified 7mo ago