v1

latestOpenAPI 3.0.32026-07-246376162.1 KB
Tasks

Get webhook

Returns a webhook by ID.

get/api/v4/tasks/webhooks/{webhook_id}

Path parameters

webhook_idstring uuid required
Example:0b97ce11-b6e0-49b4-8f92-68040aa324bf

The unique identifier of the webhook.

Response

OK

Example response

{
  "webhook": {
    "id": "0b97ce11-b6e0-49b4-8f92-68040aa324bf",
    "name": "CRM call events",
    "http_method": "post",
    "url": "https://example.com/webhook",
    "authentication_method": "basic",
    "headers": {
      "X-Custom-Header": "value"
    },
    "events": [
      "inbound.call.answered",
      "outbound.call.answered"
    ],
    "created_at": "2025-01-15T10:30:00.000000Z",
    "updated_at": "2025-01-15T10:30:00.000000Z"
  }
}