Send a test event
Sends a signed ping envelope straight to the endpoint (no retries, not recorded in deliveries) and reports what happened. Requires webhooks:manage.
POST
/webhook-endpoints/{endpointId}/pingAuthorization
AuthorizationBearer token (tp_live_...) · headerrequiredA TipPage API key, created in Dashboard → Settings → Developer.
Path parameters
endpointIdstringrequiredWebhook endpoint id (`we_...`).
Responses
200Attempt result (a failing endpoint still returns 200 here).
deliveredbooleanhttp_statusinteger | nullThe endpoint's HTTP status, when it answered.
errorstring | 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 POST "https://api.tippage.com/v1/webhook-endpoints/string/ping" \
-H "Authorization: Bearer YOUR_TOKEN"const response = await fetch("https://api.tippage.com/v1/webhook-endpoints/string/ping", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
}
});import requests
response = requests.post(
"https://api.tippage.com/v1/webhook-endpoints/string/ping",
headers={
"Authorization": "Bearer YOUR_TOKEN"
},
)Response
{
"delivered": true,
"http_status": 0,
"error": "string"
}{
"error": "string",
"code": "string"
}{
"error": "string",
"code": "string",
"required_scope": "string"
}{
"error": "string",
"code": "string"
}{
"error": "string"
}