{ "opencollection": "1.0.0", "info": { "name": "Snov.io Authentication Webhooks API", "version": "2.0" }, "items": [ { "info": { "name": "Webhooks", "type": "folder" }, "items": [ { "info": { "name": "List webhooks", "type": "http" }, "http": { "method": "GET", "url": "https://api.snov.io/v1/webhooks", "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Returns all webhook subscriptions for the account." }, { "info": { "name": "Add webhook", "type": "http" }, "http": { "method": "POST", "url": "https://api.snov.io/v1/webhooks", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Create a new webhook subscription for real-time event notifications." }, { "info": { "name": "Update webhook", "type": "http" }, "http": { "method": "PUT", "url": "https://api.snov.io/v1/webhooks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Resource ID" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Update an existing webhook subscription (e.g. change status or URL)." }, { "info": { "name": "Delete webhook", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.snov.io/v1/webhooks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Resource ID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Remove a webhook subscription." } ] } ], "bundled": true }