{ "opencollection": "1.0.0", "info": { "name": "Samora AI Calls Webhooks API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "X-API-Key", "value": "{{X-API-Key}}", "placement": "header" } }, "items": [ { "info": { "name": "Webhooks", "type": "folder" }, "items": [ { "info": { "name": "List webhooks", "type": "http" }, "http": { "method": "GET", "url": "https://api.samora.ai/v2/webhooks" }, "docs": "List webhook subscriptions." }, { "info": { "name": "Create a webhook", "type": "http" }, "http": { "method": "POST", "url": "https://api.samora.ai/v2/webhooks", "body": { "type": "json", "data": "{}" } }, "docs": "Create a webhook subscription. The response includes a signing secret used to verify webhook payload signatures." }, { "info": { "name": "List webhook event types", "type": "http" }, "http": { "method": "GET", "url": "https://api.samora.ai/v2/webhooks/events" }, "docs": "Get the list of webhook event types available for subscription." }, { "info": { "name": "Get a webhook", "type": "http" }, "http": { "method": "GET", "url": "https://api.samora.ai/v2/webhooks/:webhook_id", "params": [ { "name": "webhook_id", "value": "", "type": "path", "description": "Unique identifier of the webhook." } ] }, "docs": "Get details for a specific webhook." }, { "info": { "name": "Update a webhook", "type": "http" }, "http": { "method": "PUT", "url": "https://api.samora.ai/v2/webhooks/:webhook_id", "params": [ { "name": "webhook_id", "value": "", "type": "path", "description": "Unique identifier of the webhook." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a webhook subscription." }, { "info": { "name": "Delete a webhook", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.samora.ai/v2/webhooks/:webhook_id", "params": [ { "name": "webhook_id", "value": "", "type": "path", "description": "Unique identifier of the webhook." } ] }, "docs": "Delete a webhook subscription." } ] } ], "bundled": true }