POST /webhooks/{webhook_id}/ping
Send a signed verification or test ping.
TypeScript SDKThe npm client, generated from the API spec.Python SDKThe PyPI client, sync and async.
| Method | Path |
|---|---|
| POST | /v1/webhooks/{webhook_id}/ping |
Available in every state. Only HTTP 200 verifies a destination; successful pings never activate it. At most five pings per account per minute, including pings from creation and URL changes.
Path parameters
webhook_idstringrequired
curl -X POST "https://api.ellipsis.dev/v1/webhooks/{webhook_id}/ping" \
-H "Authorization: Bearer $ELLIPSIS_API_KEY"import os
from ellipsis import Ellipsis
client = Ellipsis(api_key=os.environ["ELLIPSIS_API_TOKEN"])
result = client.webhooks.ping(
"...",
)
print(result)import { Ellipsis } from '@ellipsis-dev/sdk';
const client = new Ellipsis({
apiKey: process.env.ELLIPSIS_API_TOKEN!,
});
const result = await client.webhooks.ping('...');
console.log(result);Request
Response
Example response · 202
{
}