Read account balances
Read a list of account balances with monthly changes for a defined period.
Query parameters
-
The starting date from which balances will be retrieved.
-
The ending date until which balances will be retrieved.
-
periods string
Specifies the periods for which the balances will be retrieved.
Format should match the following pattern:
^\d{4}-\d{2}-\d{2}Z?(,\d{4}-\d{2}-\d{2}Z?)*$
. -
type string
Specifies the type of data to be retrieved.
Values are
Date
orPeriod
. Default value isDate
. -
keepIncoming boolean
Indicates whether to include incoming amounts in the response. Default is false.
Default value is
false
.
GET
/accountbalances
curl \
-X GET https://rest.api.24sevenoffice.com/v1/accountbalances?dateFrom=2025-05-04&dateTo=2025-05-04 \
-H "Authorization: string"
Response examples (200)
[
{
"account": {
"id": 1000001,
"name": "Cash, NOK",
"number": 1900
},
"balances": [
{
"date": "2024-01-01",
"change": 5000,
"closing": 55000,
"opening": 50000
},
{
"date": "2024-02-01",
"change": 5000,
"closing": 60000,
"opening": 55000
}
]
},
{
"account": {
"id": 1000002,
"name": "Bank Account",
"number": 1920
},
"balances": [
{
"date": "2024-01-01",
"change": 5000,
"closing": 85000,
"opening": 80000
},
{
"date": "2024-02-01",
"change": 5000,
"closing": 90000,
"opening": 85000
}
]
},
{
"account": {
"id": 2000001,
"name": "Accounts Receivable",
"number": 1500
},
"balances": [
{
"date": "2024-01-01",
"change": 10000,
"closing": 110000,
"opening": 100000
},
{
"date": "2024-02-01",
"change": 10000,
"closing": 120000,
"opening": 110000
}
]
}
]