Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Headers
Path Parameters
The ID of the Business
Query Parameters
The end date (inclusive) in ISO-8601 format.
Response
Successful Response
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.
Show child attributes
The ID of the Business
The end date (inclusive) in ISO-8601 format.
Successful Response
Show child attributes