{ "opencollection": "1.0.0", "info": { "name": "Clients AR Account reports webhooks API", "version": "v1" }, "items": [ { "info": { "name": "webhooks", "type": "folder" }, "items": [ { "info": { "name": "Create a webhook", "type": "http" }, "http": { "method": "POST", "url": "https://api.agicap.com/public/events/v1/webhooks", "body": { "type": "json", "data": "{}" } }, "docs": "Register a new webhook for the authenticated organization" }, { "info": { "name": "Get a webhook", "type": "http" }, "http": { "method": "GET", "url": "https://api.agicap.com/public/events/v1/webhooks/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Get a webhook" }, { "info": { "name": "Delete a webhook", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.agicap.com/public/events/v1/webhooks/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Delete a webhook" }, { "info": { "name": "Disable a webhook", "type": "http" }, "http": { "method": "POST", "url": "https://api.agicap.com/public/events/v1/webhooks/:id/disable", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Pauses delivery to this webhook. Idempotent on an already-disabled webhook (existing disabled_reason is preserved)." }, { "info": { "name": "Enable a webhook", "type": "http" }, "http": { "method": "POST", "url": "https://api.agicap.com/public/events/v1/webhooks/:id/enable", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Re-enables a webhook that was previously disabled (manually, by the platform after repeated failures, or by org-wide deactivation). Idempotent on an already-active webhook." }, { "info": { "name": "Send a test event to the webhook", "type": "http" }, "http": { "method": "POST", "url": "https://api.agicap.com/public/events/v1/webhooks/:id/send-example", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Delivers a synthetic example payload of the given event type to the webhook. Useful for integration validation." } ] } ], "bundled": true }