{ "opencollection": "1.0.0", "info": { "name": "Cal.diy API v2 Api Keys Webhooks API", "version": "1.0.0" }, "items": [ { "info": { "name": "Webhooks", "type": "folder" }, "items": [ { "info": { "name": "Get all webhooks", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v2/webhooks", "headers": [ { "name": "Authorization", "value": "" } ], "params": [ { "name": "take", "value": "", "type": "query", "description": "Maximum number of items to return" }, { "name": "skip", "value": "", "type": "query", "description": "Number of items to skip" } ] }, "docs": "Gets a paginated list of webhooks for the authenticated user." }, { "info": { "name": "Create a webhook", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/v2/webhooks", "headers": [ { "name": "Authorization", "value": "" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create a webhook" }, { "info": { "name": "Get a webhook", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v2/webhooks/:webhookId", "headers": [ { "name": "Authorization", "value": "" } ], "params": [ { "name": "webhookId", "value": "", "type": "path" } ] }, "docs": "Get a webhook" }, { "info": { "name": "Update a webhook", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/v2/webhooks/:webhookId", "headers": [ { "name": "Authorization", "value": "" } ], "params": [ { "name": "webhookId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a webhook" }, { "info": { "name": "Delete a webhook", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/v2/webhooks/:webhookId", "headers": [ { "name": "Authorization", "value": "" } ], "params": [ { "name": "webhookId", "value": "", "type": "path" } ] }, "docs": "Delete a webhook" } ] } ], "bundled": true }