Create a bank account
Create a new bank account record with specified details including account number, BIC, type, name, owner details, and optional initial balance information.
Body
Required
Request model for creating a new bank account
-
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.
Values are
bban
oriban
. -
name
string A user-defined name of the bank account, as it is shown in 24SevenOffice.
-
owner
object Details for the bank account owner.
-
transactionType
object The transaction type within the 24SevenOffice accounting module, used when posting bank transactions in the 24SevenOffice bank module. Transaction types can be retrieved from the separate /transactiontypes endpoint.
-
ledgerAccount
object The ledger account within the 24SevenOffice accounting module that corresponds to this bank account. Accounts can be retrieved from the separate /accounts endpoint.
curl \
--request POST 'https://rest.api.24sevenoffice.com/v1/bankaccounts' \
--header "Content-Type: application/json" \
--header "Authorization: string" \
--data '{"number":"90000000001","bic":"DNBANOKKXXX","type":"bban","name":"ABC bank account","owner":{"name":"ABC Corporation","organizationNumber":"123456789","contact":{"name":"John Doe","email":"doe@example.com"}},"transactionType":{"number":5},"ledgerAccount":{"number":1920}}'
# Headers
Authorization: string
# Payload
{
"number": "90000000001",
"bic": "DNBANOKKXXX",
"type": "bban",
"name": "ABC bank account",
"owner": {
"name": "ABC Corporation",
"organizationNumber": "123456789",
"contact": {
"name": "John Doe",
"email": "doe@example.com"
}
},
"transactionType": {
"number": 5
},
"ledgerAccount": {
"number": 1920
}
}
[
{
"id": "123-456-789",
"bic": "DNBANOKKXXX",
"name": "ABC bank account",
"type": "bban",
"owner": {
"name": "ABC Corporation",
"contact": {
"name": "John Doe",
"email": "doe@example.com"
},
"organizationNumber": "123456789"
},
"number": "90000000001",
"createdAt": "2022-01-01T18:00:00.000Z",
"modifiedAt": "2022-01-01T18:00:00.000Z",
"ledgerAccount": {
"number": 1920
},
"transactionType": {
"number": 5
}
}
]