Recent deliveries
Most recent first. Requires webhooks:manage.
GET
/webhook-endpoints/{endpointId}/deliveriesAuthorization
AuthorizationBearer token (tp_live_...) · headerrequiredA TipPage API key, created in Dashboard → Settings → Developer.
Path parameters
endpointIdstringrequiredWebhook endpoint id (`we_...`).
Query parameters
limitintegermin 1 · max 100 · default: 50
Responses
200Delivery attempts for this endpoint.
deliveriesWebhookDelivery[]Show propertiesHide properties
Array of
WebhookDeliveryidstringevent_idstringevent_typestringstatusstringAllowed:
deliveredfailedretryingpendingattemptsintegernext_attempt_atstring<date-time> | nullNext retry, when still pending/retrying.
last_statusinteger | nullLast HTTP status from the endpoint.
last_errorstring | nullcreated_atstring<date-time>delivered_atstring<date-time> | null401Missing or invalid API key (`missing_api_key` / `invalid_api_key`).
errorstringrequiredHuman-readable message.
codestringMachine-readable code (e.g. `missing_scope`, `not_in_queue`).
403The key lacks the required scope (`missing_scope`).
errorstringrequiredHuman-readable message.
codestringMachine-readable code (e.g. `missing_scope`, `not_in_queue`).
required_scopestring404No such resource.
errorstringrequiredHuman-readable message.
codestringMachine-readable code (e.g. `missing_scope`, `not_in_queue`).
429Rate limit exceeded - check the `RateLimit-*` headers.
errorstringRequest
curl -X GET "https://api.tippage.com/v1/webhook-endpoints/string/deliveries" \
-H "Authorization: Bearer YOUR_TOKEN"const response = await fetch("https://api.tippage.com/v1/webhook-endpoints/string/deliveries", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
}
});import requests
response = requests.get(
"https://api.tippage.com/v1/webhook-endpoints/string/deliveries",
headers={
"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"
}
]
}{
"error": "string",
"code": "string"
}{
"error": "string",
"code": "string",
"required_scope": "string"
}{
"error": "string",
"code": "string"
}{
"error": "string"
}