API Overview
Journal Entry
Reports
Retrieve the Balance Sheet Report
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,
"ledger_id": "<string>",
"children": [
{}
]
}
]
}
]
}
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Path Parameters
The ID of the Business
Query Parameters
The end date (inclusive) in ISO-8601 format.
Response
The report period
The report records for the period
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
The Ledger id if the line is tied to a Ledger
The nested report lines for this group
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
The Ledger id if the line is tied to a Ledger
The nested report lines for this group
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
The Ledger id if the line is tied to a Ledger
The nested report lines for this group
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,
"ledger_id": "<string>",
"children": [
{}
]
}
]
}
]
}