{"openapi":"3.1.0","info":{"title":"POST /api/v1/ap-approval/provision","version":"1.0.0","description":"Provision AP approval workflow for firm"},"servers":[{"url":"https://api.ondayzero.com","description":"Production"}],"paths":{"/api/v1/ap-approval/provision":{"post":{"tags":["ap-approval"],"summary":"Provision AP approval workflow for firm","description":"Create or retrieve the AP approval workflow for the firm associated with this business.","operationId":"provision_ap_approval_workflow_api_v1_ap_approval_provision_post","parameters":[{"name":"auto_approve_max_cents","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Max amount in cents for auto-approval (default: $500)","default":50000,"title":"Auto Approve Max Cents"},"description":"Max amount in cents for auto-approval (default: $500)"},{"name":"ops_approve_max_cents","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Max amount in cents for ops approval (default: $5,000)","default":500000,"title":"Ops Approve Max Cents"},"description":"Max amount in cents for ops approval (default: $5,000)"},{"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":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApApprovalProvisionResponse"}}}},"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":{"ApApprovalProvisionResponse":{"properties":{"workflow_id":{"type":"string","title":"Workflow Id","description":"Provisioned workflow UUID."},"name":{"type":"string","title":"Name","description":"Workflow name."},"is_published":{"type":"boolean","title":"Is Published","description":"Whether the workflow is published."},"version":{"type":"integer","title":"Version","description":"Workflow version."},"graph":{"$ref":"#/components/schemas/WorkflowGraphSchema-Output","description":"Workflow graph."},"auto_approve_max_cents":{"type":"integer","title":"Auto Approve Max Cents","description":"Auto-approve threshold in cents."},"ops_approve_max_cents":{"type":"integer","title":"Ops Approve Max Cents","description":"Ops approval threshold in cents."}},"type":"object","required":["workflow_id","name","is_published","version","graph","auto_approve_max_cents","ops_approve_max_cents"],"title":"ApApprovalProvisionResponse","description":"Response for ``POST /ap-approval/provision``."},"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"},"WorkflowGraphSchema-Output":{"properties":{"nodes":{"items":{"additionalProperties":true,"type":"object"},"type":"array","title":"Nodes"},"edges":{"items":{"additionalProperties":true,"type":"object"},"type":"array","title":"Edges"}},"additionalProperties":true,"type":"object","title":"WorkflowGraphSchema","description":"Loose schema for a custom workflow graph.\n\nThe full graph shape is governed elsewhere (custom workflow builder); this\nschema just types the top-level ``nodes`` / ``edges`` arrays so the\nfrontend gets a non-``unknown`` field."}},"securitySchemes":{"BearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"API Token","description":"API token authentication. Format: `Bearer dz_...`"}}},"security":[{"BearerAuth":[]}]}