{"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/SuccessEnvelope_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_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Vendor Id","description":"Vendor UUID, if set on the bill."},"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":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Execution Id","description":"Workflow execution UUID. Null for an orphaned ``pending_approval`` bill that has no live execution yet (``needs_routing``)."},"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."},"needs_routing":{"type":"boolean","title":"Needs Routing","description":"True when this is a ``pending_approval`` bill with no live execution — it is being (re)routed into the workflow and is not yet actionable from the queue.","default":false},"bill":{"$ref":"#/components/schemas/PendingApprovalBill","description":"Bill awaiting approval."}},"type":"object","required":["workflow_id","bill"],"title":"PendingApprovalItem","description":"One AP approval item waiting on human input.\n\nUsually backed by a suspended workflow execution. Bills whose status is\n``pending_approval`` but which have no live execution (the run never\nstarted or never suspended) are also surfaced here with\n``needs_routing=True`` and a null ``execution_id`` so they never silently\nvanish from the queue."},"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``."},"SuccessEnvelope_PendingApprovalsResponse_":{"properties":{"success":{"type":"boolean","title":"Success","default":true},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"code":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Code"},"data":{"anyOf":[{"$ref":"#/components/schemas/PendingApprovalsResponse"},{"type":"null"}]}},"additionalProperties":true,"type":"object","title":"SuccessEnvelope[PendingApprovalsResponse]"},"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":[]}]}