{ "opencollection": "1.0.0", "info": { "name": "Brevo Contacts Agent Status Webhooks API", "version": "3.0" }, "request": { "auth": { "type": "apikey", "key": "api-key", "value": "{{api-key}}", "placement": "header" } }, "items": [ { "info": { "name": "Webhooks", "type": "folder" }, "items": [ { "info": { "name": "Get all webhooks", "type": "http" }, "http": { "method": "GET", "url": "https://api.brevo.com/v3/webhooks", "params": [ { "name": "type", "value": "", "type": "query", "description": "Filter webhooks by type. Returns all types if not specified." }, { "name": "sort", "value": "", "type": "query", "description": "Sort direction for the results." } ] }, "docs": "Retrieves all webhook subscriptions configured in the account. Supports filtering by webhook type to view transactional, marketing, or inbound webhook configurations." }, { "info": { "name": "Create a webhook", "type": "http" }, "http": { "method": "POST", "url": "https://api.brevo.com/v3/webhooks", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new webhook subscription to receive real-time event notifications at the specified URL. The webhook can be configured for transactional, marketing, or inbound event types." }, { "info": { "name": "Get a webhook", "type": "http" }, "http": { "method": "GET", "url": "https://api.brevo.com/v3/webhooks/:webhookId", "params": [ { "name": "webhookId", "value": "", "type": "path", "description": "Unique identifier of the webhook subscription." } ] }, "docs": "Retrieves the details of a specific webhook subscription including its URL, event types, and configuration." }, { "info": { "name": "Update a webhook", "type": "http" }, "http": { "method": "PUT", "url": "https://api.brevo.com/v3/webhooks/:webhookId", "params": [ { "name": "webhookId", "value": "", "type": "path", "description": "Unique identifier of the webhook subscription." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing webhook subscription with new URL, event types, or configuration options." }, { "info": { "name": "Delete a webhook", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.brevo.com/v3/webhooks/:webhookId", "params": [ { "name": "webhookId", "value": "", "type": "path", "description": "Unique identifier of the webhook subscription." } ] }, "docs": "Permanently deletes a webhook subscription. Events will no longer be sent to the configured URL." } ] } ], "bundled": true }