Skip to main content
PATCH
/
v1
/
webhooks
/
{id}
curl -X PATCH "https://api.signa.so/v1/webhooks/whk_01HK..." \
  -H "Authorization: Bearer $SIGNA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "status": "active" }'

Documentation Index

Fetch the complete documentation index at: https://docs.signa.so/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

id
string
required
Endpoint ID (whk_*).

Body Parameters

All fields optional.
url
string
New URL (HTTPS in production).
description
string | null
Description (or null to clear).
enabled_events
string[]
Replace the enabled-events list.
status
string
active or disabled. Re-enabling an auto-disabled endpoint resets consecutive_failures to 0.
metadata
object
Free-form metadata.

Response

The updated Webhook (secret redacted).
curl -X PATCH "https://api.signa.so/v1/webhooks/whk_01HK..." \
  -H "Authorization: Bearer $SIGNA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "status": "active" }'