Get list of insured’s banks
API Refs
- Production: Get list of insured’s banks
- Staging: Get list of insured’s banks
URI Parameters
Name | Type | Description | Required |
---|---|---|---|
userId | number | insure id | yes |
Response body
Name | Type | Description | Required |
---|---|---|---|
id | string | This id is used for all ACH payments. | yes |
name | string | Name of the bank. | yes |
accountType | string | Type of bank account. Can be only checking or savings. | yes |
type | string | Type of current funding source. It will always be a bank, since we can only have bank-type funding sources. | yes |
status | string | Bank status. For clients created with the API it will always be undefined as we don't use PLAID to validate as we do in the application. | yes |
Example
- Get list of insured’s banks Request with userId = 1;
- Get list of insured’s banks Response:
[ { "id": "11a111a1-1111-1111-11a1-11a1a1aa11aa", "name": "Bank_995", "accountType": "checking", "type": "bank", "status": "unverified" } ]
Description
All insured banks will always be unverified.
A verified bank can only be added from Plaid in the web app.
Updated over 1 year ago