Get list of banks
API Refs
- Production: Get list of banks
- Staging: Get list of banks
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 third party bank connection providers to validate as we do in the application. | yes |
defaultForPayments | boolean | Shows if this bank will be used for payments by default or not | yes |
Example
- Get list of banks Send request;
- Get list of banks Response:
[ { "id": "11a111a1-1111-1111-11a1-11a1a1aa11aa", "name": "Bank_995", "accountType": "checking", "type": "bank", "status": "verified", "defaultForPayments": true } ]
Updated 28 days ago