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