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}}
GET /users/{{user_id}}/funds?type={{funding_source_type}}
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 |
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}}
GET /users/{{user_id}}/funds/{{fund_id}}
Last updated