v1

latestOpenAPI 3.0.12026-07-26222700728.0 KB
Reports

Aged Accounts Receivable

Generate an Aged Accounts Receivable Report

post/v6/reports/agedAccountsReceivable

Request body

exportType'JSON' | 'CSV'

Export format for the report

Example request

{
  "grouping": {
    "period": "MONTHLY",
    "dimensionId": "tdim_439512"
  }
}

Response

Success

result'SUCCESS' | 'FAILURE'

The result of the action performed.

Example response

{
  "data": {
    "json": [
      {
        "name": "East Region",
        "data": [
          {
            "name": "Acme Corp",
            "balanceCurrent": 100000,
            "balance0to30": 50000,
            "balance31to60": 25000,
            "balance61to90": 10000,
            "balance91plus": 5000,
            "totalBalance": 190000
          }
        ]
      }
    ],
    "meta": {
      "generatedBy": "John Doe",
      "footerLine": "Generated by Tight"
    }
  }
}