cURL
curl --request GET \ --url https://api.example.com/v1/policy-engine/policies
{ "policies": [ {} ], "nextCursor": "<string>", "hasMore": true }
List all policies for a project
curl -X GET "https://api.axonvault.io/v1/policy-engine/policies?projectId=proj_abc123" \ -H "X-Access-Key: ak_live_abc123" \ -H "X-Signature: ..." \ -H "X-Timestamp: 2024-01-15T10:30:00Z"
{ "policies": [ { "policyId": "pol_abc123", "name": "High Value Approval", "priority": 100, "enabled": true, "createAt": "2024-01-15T10:30:00Z" }, { "policyId": "pol_def456", "name": "Whitelist Only", "priority": 50, "enabled": true, "createAt": "2024-01-14T08:00:00Z" } ], "nextCursor": "", "hasMore": false }