---
title: "Create webhook endpoint"
method: POST
path: "/webhooks/endpoints"
tags: ["Webhooks"]
---

# Create webhook endpoint

`POST /webhooks/endpoints`

Create a new webhook endpoint for the organization. Returns the signing secret in plaintext -- store it securely, it will not be shown again.

## Request body

- object
  - `name` string, required — Endpoint name (1-50 chars)
  - `url` string, uri, required — Webhook endpoint URL (HTTPS only)
  - `subscribedEvents` string[], required — Events to subscribe to

## Response `201`

Endpoint created. Signing secret shown in plaintext (only time it is visible).

- object
  - `data` object, required
    - `id` string, required
    - `name` string, required
    - `url` string, required
    - `signingSecret` string, required — Plaintext signing secret -- store securely, not shown again
    - `active` boolean, required
    - `disabledReason` string, nullable, required
    - `consecutiveFailures` number, required
    - `subscribedEvents` string[], required
    - `rotationActive` boolean, required
    - `secretExpiresAt` number
    - `createdAt` number, required
    - `updatedAt` number, required

## Other responses

- `400` — Invalid URL or events
- `401` — Unauthorized
- `409` — Maximum endpoints per organization reached

## Changes

- **2026-09-13** `e2df91eff7a2` — 3 info
  - added the new `job.deliveries_settled` enum value to the request property `subscribedEvents/items/`
  - added the new `job.delivery_failed` enum value to the request property `subscribedEvents/items/`
  - added the new `job.delivery_succeeded` enum value to the request property `subscribedEvents/items/`
- **2026-08-31** `fafe355d0698` — 1 info
  - the security scope `webhooks:write` was added to the endpoint's security scheme `bearerAuth`
- **2026-08-29** `4d10ec4266ee` — 1 info
  - api operation id `createWebhookEndpoint` was added
- **2026-07-26** `ad4351c79853` — 2 breaking
  - removed the enum value `batch.completed` of the request property `subscribedEvents/items/`
  - removed the enum value `batch.failed` of the request property `subscribedEvents/items/`

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

---

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