Webhooks

Get a webhook

Returns a single webhook by UUID.

get/webhooks/{uuid}

Path parameters

uuidstring uuid required

Webhook UUID

Example:a1b2c3d4-e5f6-7890-abcd-ef1234567890

Webhook UUID

Response

Webhook details

uuidstring uuid required

Webhook UUID

namestring required

Webhook name

urlstring required

Webhook delivery URL

createdOnstring nullable required

Creation timestamp in ISO 8601 format

modifiedOnstring nullable required

Last modification timestamp in ISO 8601 format

Example response

{
  "uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "name": "My Webhook",
  "url": "https://example.com/webhook",
  "events": [
    "call_summarized"
  ],
  "createdOn": "2024-06-15T14:30:00.000Z",
  "modifiedOn": "2024-06-15T15:00:00.000Z"
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.