The BalanceSheet object
A Rutter Balance Sheet represents assets, liabilities, and shareholder equity of a business entity during a particular period.
Properties
id
stringThe Rutter generated unique ID of the balance sheet.
start_date
stringThe ISO 8601 timestamp for the start date of the balance sheet.
end_date
stringThe ISO 8601 timestamp for the end date of the balance sheet.
currency_code
stringThe ISO 4217 currency code of the balance sheet.
total_assets
stringnullableThe total value of Assets.
total_equity
stringnullableThe total value of Equity.
total_liabilities
stringnullableThe total value of Liabilities.
assets
objectShow
assets
attributesequity
objectShow
equity
attributesliabilities
objectShow
liabilities
attributescreated_at
stringnullableThe ISO 8601 timestamp that the balance sheet was created.
updated_at
stringnullableThe ISO 8601 timestamp that the balance sheet was last updated.
platform_data
objectoptionalThe raw platform data corresponding to the Rutter object.
Show
platform_data
attributesExample BalanceSheet Object
{
"id": "9871b4a9-f5d2-4f3b-a66b-dfedbed42c46",
"start_date": "2021-09-31T00:00:00Z",
"end_date": "2022-09-31T00:00:00Z",
"currency_code": "USD",
"total_assets": "500",
"total_equity": "1000",
"total_liabilities": "-500",
"assets": {
"account_id": "1",
"name": "Asset",
"value": "1000",
"items": [
{
"account_id": "1",
"name": "1000 Rutter Holding Account",
"value": "1000.00",
"items": [
{
"account_id": "1",
"name": "1000 Rutter Holding Account",
"value": "500.00",
"items": []
},
{
"account_id": "1",
"name": "1000 Rutter Holding Account",
"value": "500.00",
"items": []
}
]
}
]
},
"equity": {
"account_id": "4",
"name": "Equity",
"value": "1000",
"items": [
{
"account_id": "11",
"name": "2000 Accounts Payable",
"value": "1000",
"items": [
{
"account_id": "11",
"name": "2000 Accounts Payable",
"value": "400",
"items": []
},
{
"account_id": "11",
"name": "2000 Accounts Payable",
"value": "600",
"items": []
}
]
}
]
},
"liabilities": {
"account_id": "11",
"name": "Liability",
"value": "-200",
"items": [
{
"account_id": "11",
"name": "2000 Accounts Payable",
"value": "-200",
"items": [
{
"account_id": "11",
"name": "2000 Accounts Payable",
"value": "-100",
"items": []
},
{
"account_id": "11",
"name": "2000 Accounts Payable",
"value": "-100",
"items": []
}
]
}
]
},
"created_at": "2022-01-01T08:00:00.000Z",
"updated_at": "2022-01-09T08:00:00.000Z",
"platform_data": {
"id": 123,
"data": "Varies by platform"
}
}
List Balance Sheets
GET /accounting/balance_sheetsSupported for: Dynamics 365Fresh BooksNetSuiteQuickBooksQuickBooks DesktopSage Business CloudSage IntacctWaveXeroZoho Books
Request Parameters
access_token
stringqueryThe access token of the connection.
end_date
stringoptionalqueryforce_fetch
enumoptionalqueryForce a response even if the underlying connection hasn't finished the initial sync.
One oftrue or false.
start_date
stringoptionalqueryResponse Body
balance_sheets
arrayShow
balance_sheets
attributesnext_cursor
stringnullableExample Response Body
{
"balance_sheets": [
{
"id": "9871b4a9-f5d2-4f3b-a66b-dfedbed42c46",
"start_date": "2021-09-31T00:00:00Z",
"end_date": "2022-09-31T00:00:00Z",
"currency_code": "USD",
"total_assets": "500",
"total_equity": "1000",
"total_liabilities": "-500",
"assets": {
"account_id": "1",
"name": "Asset",
"value": "1000",
"items": [
{
"account_id": "1",
"name": "1000 Rutter Holding Account",
"value": "1000.00",
"items": [
{
"account_id": "1",
"name": "1000 Rutter Holding Account",
"value": "500.00",
"items": []
},
{
"account_id": "1",
"name": "1000 Rutter Holding Account",
"value": "500.00",
"items": []
}
]
}
]
},
"equity": {
"account_id": "4",
"name": "Equity",
"value": "1000",
"items": [
{
"account_id": "11",
"name": "2000 Accounts Payable",
"value": "1000",
"items": [
{
"account_id": "11",
"name": "2000 Accounts Payable",
"value": "400",
"items": []
},
{
"account_id": "11",
"name": "2000 Accounts Payable",
"value": "600",
"items": []
}
]
}
]
},
"liabilities": {
"account_id": "11",
"name": "Liability",
"value": "-200",
"items": [
{
"account_id": "11",
"name": "2000 Accounts Payable",
"value": "-200",
"items": [
{
"account_id": "11",
"name": "2000 Accounts Payable",
"value": "-100",
"items": []
},
{
"account_id": "11",
"name": "2000 Accounts Payable",
"value": "-100",
"items": []
}
]
}
]
},
"created_at": "2022-01-01T08:00:00.000Z",
"updated_at": "2022-01-09T08:00:00.000Z",
"platform_data": {
"id": 123,
"data": "Varies by platform"
}
}
],
"next_cursor": "MTY3NDgzMTk0Ml82MDY4ZDI0ZC02NGRmLTRmN2EtYTM0Ny0zN2ZmNjY5MGVmMjU="
}