---
title: "Create a new webhook"
method: POST
path: "/webhooks"
tags: ["Webhooks"]
---

# Create a new webhook

`POST /webhooks`

## Request body

- CreateWebhookBody
  - `name` string, required — Name of the webhook
  - `description` string — Description of the webhook
  - `url` string, uri, required — URL to send webhook events to
  - `events` string[], required — List of events to subscribe to
  - `active` boolean — Whether the webhook should be active upon creation. Defaults to false.

## Response `200`

Webhook created successfully

- WebhookObjectResult
  - `data` object, required — Webhook object
    - `id` string, required — Unique identifier of the webhook
    - `createdAt` string, required — Creation timestamp
    - `updatedAt` string, required — Last update timestamp
    - `name` string, required — Name of the webhook
    - `active` boolean, required — Whether the webhook is active
    - `description` string — Description of the webhook
    - `url` string, required — URL to send webhook events to
    - `events` string[], required — List of subscribed events. "*" means all events.

---

[API](https://skmtc.net/dolby/apis/theolive-api.md) · [All operations](https://skmtc.net/dolby/apis/theolive-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/dolby/theolive-api/revisions/3dc30dd23624/schema)
