GetItDoneGetItDone Docs
API ReferenceWebhook endpoints

List a webhook endpoint delivery log

Cursor-paginated, REDACTED delivery log for one endpoint — org-scoped via the endpoint (404 for a cross-org or unknown endpoint id). Never includes response bodies or the signing secret. Optional `state` filter.

GET
/v1/webhook-endpoints/{endpoint_id}/deliveries

Cursor-paginated, REDACTED delivery log for one endpoint — org-scoped via the endpoint (404 for a cross-org or unknown endpoint id). Never includes response bodies or the signing secret. Optional state filter.

Authorization

bearerAuth
AuthorizationBearer <token>

A gid_ API key (Settings → API keys) or an OAuth 2.1 access token.

In: header

Path Parameters

endpoint_id*string

Query Parameters

limit?integer

Maximum number of items to return (1-100).

Range1 <= value <= 100
Default25
after?string

Opaque cursor from a previous page's next_cursor — omit for the first page. Reusing a cursor with DIFFERENT query parameters (e.g. a different limit) answers 400 validation_failed.

state?string

Filter to deliveries currently in this state.

Value in

  • "PENDING"
  • "DELIVERING"
  • "SUCCEEDED"
  • "FAILED"
  • "DISABLED"

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X GET "https://example.com/v1/webhook-endpoints/string/deliveries"
{  "data": [    {      "id": "string",      "event_id": "string",      "event_type": "string",      "state": "PENDING",      "attempt_count": -9007199254740991,      "last_status": -9007199254740991,      "next_attempt_at": "2019-08-24T14:15:22Z",      "created_at": "2019-08-24T14:15:22Z"    }  ],  "has_more": true,  "next_cursor": "string"}