Skip to main content
GET
/
webhooks
List webhook endpoints
curl --request GET \
  --url https://api.sellfern.com/webhooks \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "url": "<string>",
      "events": [
        "order.created",
        "order.status_changed"
      ],
      "enabled": true,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "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.

Response

Webhook endpoints returned successfully.

success
boolean
required
Example:

true

data
object[]
required
meta
object