Get one endpoint
Requires webhooks:manage.
GET
/webhook-endpoints/{endpointId}Authorization
AuthorizationBearer token (tp_live_...) · headerrequiredA TipPage API key, created in Dashboard → Settings → Developer.
Path parameters
endpointIdstringrequiredWebhook endpoint id (`we_...`).
Responses
200The endpoint.
endpointWebhookEndpointShow propertiesHide properties
idstringurlstring<uri>descriptionstring | nulleventsstring[]Subscribed event types, or `["*"]` for everything.
is_activebooleandisabled_reasonstring | nullSet when the endpoint was auto-disabled after repeated failures.
consecutive_failuresintegerDeliveries that exhausted every retry since the last success.
last_success_atstring<date-time> | nulllast_failure_atstring<date-time> | nullcreated_atstring<date-time>401Missing 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" \
-H "Authorization: Bearer YOUR_TOKEN"const response = await fetch("https://api.tippage.com/v1/webhook-endpoints/string", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
}
});import requests
response = requests.get(
"https://api.tippage.com/v1/webhook-endpoints/string",
headers={
"Authorization": "Bearer YOUR_TOKEN"
},
)Response
{
"endpoint": {
"id": "we_1a2b3c4d5e6f",
"url": "http://example.com",
"description": "string",
"events": [
"string"
],
"is_active": true,
"disabled_reason": "string",
"consecutive_failures": 0,
"last_success_at": "2019-08-24T14:15:22Z",
"last_failure_at": "2019-08-24T14:15:22Z",
"created_at": "2019-08-24T14:15:22Z"
}
}{
"error": "string",
"code": "string"
}{
"error": "string",
"code": "string",
"required_scope": "string"
}{
"error": "string",
"code": "string"
}{
"error": "string"
}