GET
/
v0
/
business
/
{business_id}
/
reports
/
balance-sheet
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

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

business_id
string
required

The ID of the Business

Query Parameters

end_datetime
string
required

The end date (inclusive) in ISO-8601 format.

Response

200
application/json
Successful Response
data
object[]
required