Skip to main content
POST
/
webhooks
/
clerk
Clerk webhook handler
curl --request POST \
  --url https://api.dualship.run/webhooks/clerk \
  --header 'Content-Type: application/json' \
  --header 'svix-id: <svix-id>' \
  --header 'svix-signature: <svix-signature>' \
  --header 'svix-timestamp: <svix-timestamp>' \
  --data '
{
  "data": [
    123
  ],
  "type": "<string>"
}
'
{
  "received": true
}

Headers

svix-id
string
required

Svix webhook ID

svix-timestamp
string
required

Svix webhook timestamp

svix-signature
string
required

Svix webhook signature

Body

application/json

Webhook event payload

data
integer[]
type
string

Response

Webhook received

Webhook processing response

received
boolean
Example:

true