GET
/
v0
/
business
/
{business_id}
/
reports
/
aged-receivables
curl --request GET \
  --url https://api.sandbox.getasset.com/v0/business/{business_id}/reports/aged-receivables \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "customer_id": "<string>",
      "customer_name": "<string>",
      "overdue_0_30": 123,
      "overdue_31_60": 123,
      "overdue_61_90": 123,
      "overdue_90_plus": 123,
      "total_outstanding": 123
    }
  ]
}

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

start_datetime
string
required

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

Response

200
application/json

Successful Response

The response is of type object.