Skip to main content
Parcel Events Sandbox Docs

Search documentation

Type to search this documentation.

List webhook endpoints

GET/v1/webhook-endpointsList webhook endpoints

Parameters

cursorstringquery

minLength 1

limitintegerquery

default 25 · maximum 100 · minimum 1

Responses

200A page of webhook endpointsapplication/json
objectWebhookEndpointPage
dataarray of objectrequired
Show child attributes
Show array items
created_atstring · date-timerequired
enabledbooleanrequired
eventsarray of stringrequired
Show child attributes
idstringrequired
objectvaluerequired

const "webhook_endpoint"

signing_secret_hintstring
urlstring · urirequired
has_morebooleanrequired
next_cursornull | stringrequired
Example response
{
  "data": [
    {
      "created_at": "2026-06-09T00:00:00Z",
      "enabled": true,
      "events": [
        "pickup.completed"
      ],
      "id": "whe_00000000000000000001",
      "object": "webhook_endpoint",
      "signing_secret_hint": "synthetic-key-ending-0000",
      "url": "https://hooks.parcel-events.example/events"
    }
  ],
  "has_more": true,
  "next_cursor": "string"
}

Documentation menu