Skip to content
TipPage Docs
Esc
navigateopen⌘Jpreview

Recent deliveries

Most recent first. Requires webhooks:manage.

GET/webhook-endpoints/{endpointId}/deliveries
Authorization
AuthorizationBearer token (tp_live_...) · headerrequired
A TipPage API key, created in Dashboard → Settings → Developer.
Path parameters
endpointIdstringrequired
Webhook endpoint id (`we_...`).
Query parameters
limitinteger
min 1 · max 100 · default: 50
Responses
200Delivery attempts for this endpoint.
deliveriesWebhookDelivery[]
Show properties
Array of WebhookDelivery
idstring
event_idstring
event_typestring
statusstring
Allowed:deliveredfailedretryingpending
attemptsinteger
next_attempt_atstring<date-time> | null
Next retry, when still pending/retrying.
last_statusinteger | null
Last HTTP status from the endpoint.
last_errorstring | null
created_atstring<date-time>
delivered_atstring<date-time> | null
401Missing or invalid API key (`missing_api_key` / `invalid_api_key`).
errorstringrequired
Human-readable message.
codestring
Machine-readable code (e.g. `missing_scope`, `not_in_queue`).
403The key lacks the required scope (`missing_scope`).
errorstringrequired
Human-readable message.
codestring
Machine-readable code (e.g. `missing_scope`, `not_in_queue`).
required_scopestring
404No such resource.
errorstringrequired
Human-readable message.
codestring
Machine-readable code (e.g. `missing_scope`, `not_in_queue`).
429Rate limit exceeded - check the `RateLimit-*` headers.
errorstring
Request
curl -X GET "https://api.tippage.com/v1/webhook-endpoints/string/deliveries" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "deliveries": [
    {
      "id": "wd_a1b2c3d4e5f6",
      "event_id": "evt_9f1e2d3c4b5a6978",
      "event_type": "tip.created",
      "status": "delivered",
      "attempts": 0,
      "next_attempt_at": "2019-08-24T14:15:22Z",
      "last_status": 0,
      "last_error": "string",
      "created_at": "2019-08-24T14:15:22Z",
      "delivered_at": "2019-08-24T14:15:22Z"
    }
  ]
}