{ "opencollection": "1.0.0", "info": { "name": "Voltair ApiKeys Webhooks API", "version": "0.1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Webhooks", "type": "folder" }, "items": [ { "info": { "name": "List webhooks", "type": "http" }, "http": { "method": "GET", "url": "/webhooks", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Page size (default 50, max 200)" }, { "name": "cursor", "value": "", "type": "query", "description": "Opaque pagination cursor from a previous response" } ] }, "docs": "List webhooks" }, { "info": { "name": "Create webhook", "type": "http" }, "http": { "method": "POST", "url": "/webhooks", "headers": [ { "name": "Idempotency-Key", "value": "" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a webhook. The server generates the signing secret." }, { "info": { "name": "Get webhook", "type": "http" }, "http": { "method": "GET", "url": "/webhooks/:webhookId", "params": [ { "name": "webhookId", "value": "", "type": "path" } ] }, "docs": "Get webhook" }, { "info": { "name": "Update webhook", "type": "http" }, "http": { "method": "PUT", "url": "/webhooks/:webhookId", "params": [ { "name": "webhookId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates a webhook (URL, events, enabled flag). Cannot edit id, organizationId, or secret (use rotate endpoint for secret)." }, { "info": { "name": "Delete webhook", "type": "http" }, "http": { "method": "DELETE", "url": "/webhooks/:webhookId", "params": [ { "name": "webhookId", "value": "", "type": "path" } ] }, "docs": "Soft-deletes a webhook. Delivery history is retained for audit purposes." }, { "info": { "name": "Rotate webhook secret", "type": "http" }, "http": { "method": "POST", "url": "/webhooks/:webhookId/rotate-secret", "headers": [ { "name": "Idempotency-Key", "value": "" } ], "params": [ { "name": "webhookId", "value": "", "type": "path" } ] }, "docs": "Generates a new signing secret. Returns the updated webhook with the new secret." }, { "info": { "name": "Test webhook", "type": "http" }, "http": { "method": "POST", "url": "/webhooks/:webhookId/test", "headers": [ { "name": "Idempotency-Key", "value": "" } ], "params": [ { "name": "webhookId", "value": "", "type": "path" } ] }, "docs": "Sends a test payload to the webhook URL. Returns the delivery result (status code, response time, error)." }, { "info": { "name": "List webhook deliveries", "type": "http" }, "http": { "method": "GET", "url": "/webhooks/:webhookId/deliveries", "params": [ { "name": "webhookId", "value": "", "type": "path" }, { "name": "event", "value": "", "type": "query", "description": "Filter by webhook event type" }, { "name": "limit", "value": "", "type": "query", "description": "Page size (default 50, max 200)" }, { "name": "cursor", "value": "", "type": "query", "description": "Opaque pagination cursor from a previous response" } ] }, "docs": "List webhook deliveries" } ] } ], "bundled": true }