{"openapi":"3.1.0","info":{"title":"GET /api/v1/bills/aging","version":"1.0.0","description":"AP aging summary"},"servers":[{"url":"https://api.ondayzero.com","description":"Production"}],"paths":{"/api/v1/bills/aging":{"get":{"tags":["bills"],"summary":"AP aging summary","description":"Returns accounts payable aging data grouped by vendor with Current, 1-30, 31-60, 61-90, and 91+ day buckets. Includes per-bill detail for drill-down.","operationId":"get_bill_aging_api_v1_bills_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/BillAgingResponse"}}}},"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":{"AgingBillItem":{"properties":{"id":{"type":"string","title":"Id"},"bill_number":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Bill Number"},"vendor_id":{"type":"string","title":"Vendor Id"},"vendor_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Vendor Name"},"status":{"type":"string","title":"Status"},"amount":{"type":"integer","title":"Amount","description":"Bill amount 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","vendor_id","status","amount","balance_due","bucket"],"title":"AgingBillItem","description":"A single bill with its aging bucket assignment."},"AgingVendorSummary":{"properties":{"vendor_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Vendor Id"},"vendor_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Vendor 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":"AgingVendorSummary","description":"Per-vendor aging bucket totals (all amounts in cents)."},"BillAgingResponse":{"properties":{"as_of_date":{"type":"string","title":"As Of Date","description":"Report date in YYYY-MM-DD format."},"vendors":{"items":{"$ref":"#/components/schemas/AgingVendorSummary"},"type":"array","title":"Vendors","description":"Per-vendor aging summary rows."},"bills":{"items":{"$ref":"#/components/schemas/AgingBillItem"},"type":"array","title":"Bills","description":"Individual bills with aging bucket for drill-down."},"totals":{"$ref":"#/components/schemas/AgingVendorSummary","description":"Grand totals across all vendors."}},"type":"object","required":["as_of_date","vendors","bills","totals"],"title":"BillAgingResponse","description":"AP Aging Summary with per-vendor buckets and bill-level detail."},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"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":[]}]}