{ "opencollection": "1.0.0", "info": { "name": "Computer-Use Agents Webhooks API", "version": "1.0.0" }, "items": [ { "info": { "name": "Webhooks", "type": "folder" }, "items": [ { "info": { "name": "List Webhooks", "type": "http" }, "http": { "method": "GET", "url": "https://agp.eu.hcompany.ai/api/v2/webhooks", "params": [ { "name": "page", "value": "", "type": "query", "description": "Page number (1-based)" }, { "name": "size", "value": "", "type": "query", "description": "Number of items per page" }, { "name": "sort", "value": "", "type": "query", "description": "Sort by field" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "List the organization's webhooks." }, { "info": { "name": "Create Webhook", "type": "http" }, "http": { "method": "POST", "url": "https://agp.eu.hcompany.ai/api/v2/webhooks", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Register a webhook. The signing secret is only returned here; store it securely." }, { "info": { "name": "List Webhook Events", "type": "http" }, "http": { "method": "GET", "url": "https://agp.eu.hcompany.ai/api/v2/webhooks/events", "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "List concrete webhook event types clients can subscribe to." }, { "info": { "name": "Get Webhook", "type": "http" }, "http": { "method": "GET", "url": "https://agp.eu.hcompany.ai/api/v2/webhooks/:webhook_id", "params": [ { "name": "webhook_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Fetch a webhook by id." }, { "info": { "name": "Update Webhook", "type": "http" }, "http": { "method": "PATCH", "url": "https://agp.eu.hcompany.ai/api/v2/webhooks/:webhook_id", "params": [ { "name": "webhook_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Update a webhook; only provided fields change." }, { "info": { "name": "Delete Webhook", "type": "http" }, "http": { "method": "DELETE", "url": "https://agp.eu.hcompany.ai/api/v2/webhooks/:webhook_id", "params": [ { "name": "webhook_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Delete a webhook." }, { "info": { "name": "Rotate Webhook Secret", "type": "http" }, "http": { "method": "POST", "url": "https://agp.eu.hcompany.ai/api/v2/webhooks/:webhook_id/rotate", "params": [ { "name": "webhook_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Replace the signing secret. Only returned here; make your receiver accept both secrets before rotating." }, { "info": { "name": "Ping Webhook", "type": "http" }, "http": { "method": "POST", "url": "https://agp.eu.hcompany.ai/api/v2/webhooks/:webhook_id/ping", "params": [ { "name": "webhook_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Send a signed ping event to the webhook and report the receiver's HTTP response." } ] } ], "bundled": true }