Skip to main content
PATCH
/
webhooks
/
{webhook_id}
Update webhook
curl --request PATCH \
  --url https://api.timeless.day/v1/webhooks/{webhook_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "enabled": false
}
'
{
  "id": "whk_abc123",
  "url": "https://example.com/webhooks/timeless",
  "events": [
    "meeting.transcript_ready"
  ],
  "enabled": false,
  "created_at": "2025-01-15T12:00:00Z",
  "updated_at": "2025-01-16T09:00:00Z"
}

Authorizations

Authorization
string
header
required

API token from your Timeless dashboard.

Path Parameters

webhook_id
string
required

The webhook ID (e.g., whk_abc123).

Body

application/json
url
string | null

New HTTPS URL. Max 2048 characters.

Maximum string length: 2048
events
enum<string>[] | null

New list of subscribed events. Replaces the existing list. At least one event is required.

Minimum array length: 1
Available options:
meeting.transcript_ready,
meeting.initial_summary_ready
enabled
boolean | null

Enable or disable the webhook.

Response

The updated webhook.

id
string
required

Webhook ID.

Example:

"whk_abc123"

url
string
required

The registered URL.

events
enum<string>[]
required

Subscribed events.

Available options:
meeting.transcript_ready,
meeting.initial_summary_ready
enabled
boolean
required

Whether the webhook is active.

created_at
string<date-time>
required

ISO 8601 timestamp.

updated_at
string<date-time>
required

ISO 8601 timestamp.