Test Commands

Send test webhooks to your endpoints and debug your webhook configurations.

Send a Test Webhook

Send a test webhook to verify your endpoint is working correctly:

Terminal

Custom Request

Send a test with custom method, body, and headers:

Terminal

Options

FlagDescription
--methodHTTP method (default: POST)
--bodyRequest body
--headerCustom header (repeatable)

Echo Server

Start a local echo server that receives and displays incoming webhooks. Useful for debugging and verifying webhook payloads:

Terminal

Info

The echo server logs all incoming requests with their headers and body, making it easy to inspect exactly what your webhook provider is sending.

Related