{"openapi":"3.1.0","info":{"title":"GET /api/v1/invoices/aging","version":"1.0.0","description":"AR aging summary"},"servers":[{"url":"https://api.ondayzero.com","description":"Production"}],"paths":{"/api/v1/invoices/aging":{"get":{"tags":["invoices"],"summary":"AR aging summary","description":"Returns accounts receivable aging data grouped by customer with Current, 1-30, 31-60, 61-90, and 91+ day buckets. Includes per-invoice detail for drill-down.","operationId":"get_invoice_aging_api_v1_invoices_aging_get","parameters":[{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}},{"name":"x-business-id","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Business-Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InvoiceAgingResponse"}}}},"401":{"description":"Unauthorized - Authentication required","content":{"application/json":{"example":{"detail":"Not authenticated"}}}},"403":{"description":"Forbidden - Insufficient permissions","content":{"application/json":{"example":{"detail":"Not enough permissions"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}},"components":{"schemas":{"AgingCustomerSummary":{"properties":{"customer_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Customer Id"},"customer_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Customer Name"},"current":{"type":"integer","title":"Current","default":0},"days_1_30":{"type":"integer","title":"Days 1 30","default":0},"days_31_60":{"type":"integer","title":"Days 31 60","default":0},"days_61_90":{"type":"integer","title":"Days 61 90","default":0},"days_91_plus":{"type":"integer","title":"Days 91 Plus","default":0},"total":{"type":"integer","title":"Total","default":0}},"type":"object","title":"AgingCustomerSummary","description":"Per-customer aging bucket totals (all amounts in cents)."},"AgingInvoiceItem":{"properties":{"id":{"type":"string","title":"Id"},"invoice_number":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Invoice Number"},"customer_id":{"type":"string","title":"Customer Id"},"customer_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Customer Name"},"status":{"type":"string","title":"Status"},"total":{"type":"integer","title":"Total","description":"Invoice total in cents."},"total_paid":{"type":"integer","title":"Total Paid","description":"Total paid in cents.","default":0},"balance_due":{"type":"integer","title":"Balance Due","description":"Remaining balance in cents."},"due_date":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Due Date"},"days_past_due":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Days Past Due"},"bucket":{"type":"string","title":"Bucket","description":"Aging bucket: 'current', '1_30', '31_60', '61_90', '91_plus'."}},"type":"object","required":["id","customer_id","status","total","balance_due","bucket"],"title":"AgingInvoiceItem","description":"A single invoice with its aging bucket assignment."},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"InvoiceAgingResponse":{"properties":{"as_of_date":{"type":"string","title":"As Of Date","description":"Report date in YYYY-MM-DD format."},"customers":{"items":{"$ref":"#/components/schemas/AgingCustomerSummary"},"type":"array","title":"Customers","description":"Per-customer aging summary rows."},"invoices":{"items":{"$ref":"#/components/schemas/AgingInvoiceItem"},"type":"array","title":"Invoices","description":"Individual invoices with aging bucket for drill-down."},"totals":{"$ref":"#/components/schemas/AgingCustomerSummary","description":"Grand totals across all customers."}},"type":"object","required":["as_of_date","customers","invoices","totals"],"title":"InvoiceAgingResponse","description":"AR Aging Summary with per-customer buckets and invoice-level detail."},"ValidationError":{"properties":{"loc":{"items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"type":"array","title":"Location"},"msg":{"type":"string","title":"Message"},"type":{"type":"string","title":"Error Type"},"input":{"title":"Input"},"ctx":{"type":"object","title":"Context"}},"type":"object","required":["loc","msg","type"],"title":"ValidationError"}},"securitySchemes":{"BearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"API Token","description":"API token authentication. Format: `Bearer dz_...`"}}},"security":[{"BearerAuth":[]}]}