# Read a bank account by ID **GET /bankaccounts/{id}** Read details for a specific bank account identified by its unique identifier. The response includes information such as account number, BIC, type, name, owner details, creation timestamp, modification timestamp, and the latest balance information, should there be one available. ## Servers - https://rest.api.24sevenoffice.com/v1: https://rest.api.24sevenoffice.com/v1 () ## Authentication methods - Tfso ## Parameters ### Headers - **Authorization** (string) Authorization header ### Path parameters - **id** (string) ### Query parameters - **before** (string(date)) The date to get the balance from. The balance returned will be the last balance before this date. If omitted, the current date is used. The date format here is YYYY-MM-DD. ## Responses ### 200 Successful operation #### 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)