Skip to main content
GET
/
webhooks
/
{id}
/
deliveries
List webhook deliveries
curl --request GET \
  --url https://api.sellfern.com/webhooks/{id}/deliveries \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "event": "order.created",
      "status": "delivered",
      "attempts": 1,
      "last_error": "<string>",
      "next_retry_at": "2023-11-07T05:31:56Z",
      "delivered_at": "2023-11-07T05:31:56Z",
      "created_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.

Path Parameters

id
string<uuid>
required

Webhook endpoint ID.

Query Parameters

limit
integer
default:50

Maximum number of delivery attempts to return.

Required range: 1 <= x <= 100

Response

Webhook deliveries returned successfully.

success
boolean
required
Example:

true

data
object[]
required
meta
object