# Create a bank account **POST /bankaccounts** Create a new bank account record with specified details including account number, BIC, type, name, owner details, and optional initial balance information. ## Servers - https://rest.api.24sevenoffice.com/v1: https://rest.api.24sevenoffice.com/v1 () ## Authentication methods - Tfso ## Parameters ### Headers - **Authorization** (string) Authorization header ### Body: application/json (object) - **number** (string) The account number of the bank account. - **bic** (string) The Business Identifier Codes (BIC) for the bank that manages the bank account. - **type** (string) The type of the bank account, which is one of the following: * `bban`: Basic Bank Account Number is a country-specific bank account number format. * `iban`: International Bank Account Number format. - **name** (string) A user-defined name of the bank account, as it is shown in Finago Office. - **owner** (object) Details for the bank account owner. - **transactionType** (object) The transaction type within the Finago Office accounting module, used when posting bank transactions in the Finago Office bank module. Transaction types can be retrieved from the separate /transactiontypes endpoint. - **ledgerAccount** (object) The ledger account within the Finago Office accounting module that corresponds to this bank account. Accounts can be retrieved from the separate /accounts endpoint. ## Responses ### 201 Created #### Headers - **Access-Control-Allow-Origin** (string) - **Access-Control-Allow-Credentials** (string) - **X-Trace-Id** (string) #### Body: application/json (object) - **id** (string(uuid)) A unique identifier for the bank account within Finago Office. - **number** (string) The account number of the bank account. - **bic** (string) The Business Identifier Codes (BIC) for the bank that manages the bank account. - **type** (string) The type of the bank account, which is one of the following: * `bban`: Basic Bank Account Number is a country-specific bank account number format. * `iban`: International Bank Account Number format. - **name** (string) A user-defined name of the bank account, as it is shown in Finago Office. - **owner** (object) Details for the bank account owner. - **transactionType** (object) The transaction type within the Finago Office accounting module, used when posting bank transactions in the Finago Office bank module. Transaction types can be retrieved from the separate /transactiontypes endpoint. - **ledgerAccount** (object) The ledger account within the Finago Office accounting module that corresponds to this bank account. Accounts can be retrieved from the separate /accounts endpoint. - **balance** (object) The balance of the bank account. The whole balance object is omitted if no balance is available. - **createdAt** (string(date-time)) A timestamp for when a record was created, in ISO 8601 format. - **modifiedAt** (string(date-time)) A timestamp for when one of the properties of a record was last modified, in ISO 8601 format. The Bank Account Balance changes are not included here, as these are defined by a separate "timestamp" property for the `balance` object. [Powered by Bump.sh](https://bump.sh)