curl --request GET \
--url https://api.sandbox.getasset.com/v0/business/{business_id}/reports/balance-sheet \
--header 'Authorization: Bearer <token>'{
"data": [
{
"period": "<string>",
"records": [
{
"name": "<string>",
"amount": 123,
"total_amount": 123,
"has_entries": false,
"ledger_id": "<string>",
"children": [
{
"amount": 100,
"children": [],
"ledger_id": "<string>",
"name": "<string>",
"total_amount": 150
}
]
}
]
}
]
}curl --request GET \
--url https://api.sandbox.getasset.com/v0/business/{business_id}/reports/balance-sheet \
--header 'Authorization: Bearer <token>'{
"data": [
{
"period": "<string>",
"records": [
{
"name": "<string>",
"amount": 123,
"total_amount": 123,
"has_entries": false,
"ledger_id": "<string>",
"children": [
{
"amount": 100,
"children": [],
"ledger_id": "<string>",
"name": "<string>",
"total_amount": 150
}
]
}
]
}
]
}The access token received from the authorization server in the OAuth 2.0 flow.
application/json, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet The ID of the Business
The end date (inclusive) in ISO-8601 format.
Successful Response
Show child attributes
The report period
The report records for the period
Show child attributes
The line description in the report
The amount of lines in this group excluding child totals
The total amount of the group includ child totals
Whether the report line has journal entries
The Ledger id if the line is tied to a Ledger
The nested report lines for this group
[
{
"amount": 100,
"children": [],
"ledger_id": "<string>",
"name": "<string>",
"total_amount": 150
}
]