{"openapi":"3.1.0","info":{"title":"GET /api/v1/ap-approval/pending","version":"1.0.0","description":"List pending AP approvals"},"servers":[{"url":"https://api.ondayzero.com","description":"Production"}],"paths":{"/api/v1/ap-approval/pending":{"get":{"tags":["ap-approval"],"summary":"List pending AP approvals","description":"List bills currently suspended at an AP approval gate.","operationId":"list_pending_approvals_api_v1_ap_approval_pending_get","parameters":[{"name":"tier","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Filter to a specific tier: 'ops', 'advisor', or 'owner'.","title":"Tier"},"description":"Filter to a specific tier: 'ops', 'advisor', or 'owner'."},{"name":"mine","in":"query","required":false,"schema":{"type":"boolean","description":"When true, only show approvals whose gate tier the caller is configured as an approver for.","default":false,"title":"Mine"},"description":"When true, only show approvals whose gate tier the caller is configured as an approver for."},{"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/PendingApprovalsResponse"}}}},"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":{"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"PendingApprovalBill":{"properties":{"id":{"type":"string","title":"Id","description":"Bill UUID (as string)."},"amount":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Amount","description":"Bill amount in cents (0 when unavailable)."},"vendor_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Vendor Name","description":"Resolved vendor name."},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description","description":"Bill description."},"status":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Status","description":"Bill status name."}},"type":"object","required":["id"],"title":"PendingApprovalBill","description":"Trimmed bill payload embedded in pending approval items."},"PendingApprovalItem":{"properties":{"execution_id":{"type":"string","title":"Execution Id","description":"Workflow execution UUID."},"workflow_id":{"type":"string","title":"Workflow Id","description":"AP approval workflow UUID."},"node_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Node Id","description":"Approval gate node id the run is waiting on."},"tier":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tier","description":"Tier of the suspended gate ('ops', 'advisor', 'owner')."},"label":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Label","description":"Human-readable label of the suspended gate."},"suspended_at":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Suspended At","description":"ISO timestamp when execution was suspended."},"bill":{"$ref":"#/components/schemas/PendingApprovalBill","description":"Bill awaiting approval."}},"type":"object","required":["execution_id","workflow_id","bill"],"title":"PendingApprovalItem","description":"One suspended AP approval execution waiting on human input."},"PendingApprovalsResponse":{"properties":{"items":{"items":{"$ref":"#/components/schemas/PendingApprovalItem"},"type":"array","title":"Items","description":"Suspended approval rows, newest first (max 200)."}},"type":"object","title":"PendingApprovalsResponse","description":"Response for ``GET /ap-approval/pending``."},"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":[]}]}