---
title: "Create Webhook"
method: POST
path: "/webhooks"
tags: ["Webhooks"]
---

# Create Webhook

`POST /webhooks`

Create a new webhook

## Request body

- object
  - `url` string, uri, required
  - `events` string[], required — Array of event types to subscribe to. See the full list for available events including organization seal and signing request seal events.
  - `workspace_id` string, uuid — Optional workspace ID. When provided, creates a workspace-scoped webhook. When omitted, creates a company-level webhook.

## Response `201`

Webhook created successfully

- Webhook
  - `id` string, uuid, required — Unique identifier for the webhook
  - `url` string, uri, required — Webhook URL
  - `description` string, nullable — Webhook description
  - `events` string[], required — Events that trigger this webhook
  - `enabled` boolean, required — Whether the webhook is enabled
  - `consecutive_failures` integer — Number of consecutive delivery failures
  - `auto_disabled_at` string, date-time, nullable — Timestamp when the webhook was auto-disabled due to failures
  - `created_at` string, date-time, required — Webhook creation timestamp
  - `updated_at` string, date-time — Webhook last update timestamp

## Other responses

- `400` — Bad Request - Validation failed
- `401` — Unauthorized - Invalid or missing API key
- `429` — Too Many Requests - Rate limit exceeded

## Changes

- **2026-09-15** `f179958c3bee` — 1 breaking, 29 info
  - request property `events/items/` was restricted to a list of enum values
  - added the new `domain.verification.failed` enum value to the request property `events/items/`
  - added the new `domain.verified` enum value to the request property `events/items/`
  - added the new `organization_seal.created` enum value to the request property `events/items/`
  - …26 more

[Change history](https://skmtc.dev/firma/apis/firma-partner-api/changes/webhooks/post.md)

---

[API](https://skmtc.dev/firma/apis/firma-partner-api.md) · [All operations](https://skmtc.dev/firma/apis/firma-partner-api/llms.txt) · [OpenAPI document](https://skmtc.dev/firma/apis/firma-partner-api/revisions/12d1aae71d9a?raw)
