Bank account types
API endpoints
List bank account types
GET
https://{domain}.biapi.pro/2.0/account_types
List all bank account types available in the API.
Response body: AccountTypesList object
Get a bank account type
GET
https://{domain}.biapi.pro/2.0/account_types/{typeId}
Get a single bank account type by ID.
Path Parameters
Name | Type | Description |
---|---|---|
typeId* | Integer | ID of the bank account type. |
Response body: AccountType object
Data model
AccountTypesList object
Property | Type | Description |
---|---|---|
| Array of AccountType objects | List of supported account types. |
AccountType object
Property | Type | Description |
---|---|---|
| Number | ID of the account type. |
| AccountTypeName string | Technical code of the account type. |
| Number or null | Optional, the id of the parent type. |
| Boolean | Whether the type corresponds to an 'investment' account type. These types usually present investments and may have limitations regarding transfers. |
| String | The display name of the account type, in French. |
| String | The plural display name of the account type, in French. |
AccountTypeName values
Value | Description |
---|---|
| Article 83. |
| Capitalization contract. |
| Card. |
| Checking account. |
| Crowdlending. |
| Deposit account. |
| (Deprecated) Joint account. |
ldds | Sustainable and solidarity development savings (Livrets de développement durable et solidaire). |
| Life insurance account. |
| Loan. |
| Madelin retirement contract. |
| Market account. |
| Shared savings plan (Plan d'Épargne en Actions). |
| Company savings plan (Plan d'Épargne Entreprise). |
| Retirement savings plan (Plan d'Épargne Retraite). |
| Group retirement savings plan (Plan d'Épargne pour la Retraite Collectif). |
| Popular retirement savings plan (Plan d'Épargne Retraite Populaire). |
| Real estate placement. |
| Special profit-sharing reserve (Réserve Spéciale de Participation). |
| Savings account. |
| Unknown account type. |
Last updated