{ "opencollection": "1.0.0", "info": { "name": "Fivetran REST Connections Webhooks API", "version": "1.0" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Webhooks", "type": "folder" }, "items": [ { "info": { "name": "List webhooks", "type": "http" }, "http": { "method": "GET", "url": "https://api.fivetran.com/v1/webhooks" }, "docs": "List webhooks" }, { "info": { "name": "Create an account-level webhook", "type": "http" }, "http": { "method": "POST", "url": "https://api.fivetran.com/v1/webhooks/account", "body": { "type": "json", "data": "{}" } }, "docs": "Create an account-level webhook" }, { "info": { "name": "Create a group-level webhook", "type": "http" }, "http": { "method": "POST", "url": "https://api.fivetran.com/v1/webhooks/group/:groupId", "params": [ { "name": "groupId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create a group-level webhook" }, { "info": { "name": "Retrieve a webhook", "type": "http" }, "http": { "method": "GET", "url": "https://api.fivetran.com/v1/webhooks/:webhookId", "params": [ { "name": "webhookId", "value": "", "type": "path" } ] }, "docs": "Retrieve a webhook" }, { "info": { "name": "Update a webhook", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.fivetran.com/v1/webhooks/:webhookId", "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": "https://api.fivetran.com/v1/webhooks/:webhookId", "params": [ { "name": "webhookId", "value": "", "type": "path" } ] }, "docs": "Delete a webhook" }, { "info": { "name": "Test a webhook delivery", "type": "http" }, "http": { "method": "POST", "url": "https://api.fivetran.com/v1/webhooks/:webhookId/test", "params": [ { "name": "webhookId", "value": "", "type": "path" } ] }, "docs": "Test a webhook delivery" } ] } ], "bundled": true }