Skip to main content
DELETE
/
webhooks
/
{id}
Delete a webhook endpoint
curl --request DELETE \
  --url https://api.sellfern.com/webhooks/{id} \
  --header 'Content-Type: application/json' \
  --header 'Idempotency-Key: <idempotency-key>' \
  --header 'x-api-key: <api-key>' \
  --data '{}'
{
  "success": true,
  "data": {},
  "meta": {
    "request_id": "<string>"
  }
}

Documentation Index

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

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

Authorizations

x-api-key
string
header
required

Sellfern public API key scoped to the authenticated organization. Do not use user JWTs for public integrations.

Headers

Idempotency-Key
string
required

Required for public write retries. Reuse the same key for safe retry after network or 5xx uncertainty. Reusing a key with a different request returns 422 idempotency_conflict.

Required string length: 1 - 255

Path Parameters

id
string<uuid>
required

Webhook endpoint ID.

Query Parameters

confirm
string
required

Must match the webhook ID.

Body

application/json

The body is of type object.

Response

Mutation completed successfully.

success
boolean
required
Example:

true

data
object
required
meta
object