Skip to main content
POST
/
v1
/
webhooks
/
svix
/
{zombie_id}
Receive a Svix-signed webhook (Clerk events)
curl --request POST \
  --url https://api.usezombie.com/v1/webhooks/svix/{zombie_id} \
  --header 'Content-Type: application/json' \
  --header 'svix-id: <svix-id>' \
  --header 'svix-signature: <svix-signature>' \
  --header 'svix-timestamp: <svix-timestamp>' \
  --data '{}'
{
  "status": "accepted"
}

Documentation Index

Fetch the complete documentation index at: https://docs.usezombie.com/llms.txt

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

Headers

svix-id
string
required

Svix message identifier (used for deduplication and signature binding).

svix-timestamp
string
required

Unix timestamp of the Svix delivery (used for replay protection).

svix-signature
string
required

Space-separated list of Svix signatures (v1 scheme).

Path Parameters

zombie_id
string<uuid>
required

UUIDv7 of the zombie receiving the webhook.

Body

application/json

Opaque event envelope; upstream issuer (Svix) defines the payload shape per event type.

Response

Webhook accepted and queued for processing.

status
enum<string>
Available options:
accepted