Skip to main content

Customer onboarding

This guide is the shortest customer-facing setup path for Praeto Dispatcher. It is designed for teams that already have an application that emits events and need reliable webhook delivery to customer endpoints.

Setup checklist

A customer should be able to complete the first working integration in this order:
  1. Receive a tenant API key from Praeto.
  2. Create an endpoint destination.
  3. Store the returned signing secret.
  4. Publish a test event.
  5. Verify the webhook signature at the receiving service.
  6. Inspect delivery attempts.
  7. Replay a delivery if needed.
  8. Monitor usage, metrics, and endpoint health.

Base URL

Use the production API hostname:

Step 1: Set your API key

PowerShell:

Step 2: Create your first endpoint

Use a test receiver such as webhook.site for the first setup pass.
The response includes signing_secret. Store it immediately. It is only returned on create and rotate.

Step 3: Publish a test event

A successful response returns an event_id and one or more delivery_ids.

Step 4: Verify the webhook signature

Praeto sends signed webhook requests with headers such as:
Use the raw request body for verification. Do not parse and re-serialize the JSON before calculating the HMAC.

Step 5: Inspect delivery attempts

Step 6: Replay a delivery

Step 7: Check usage and limits

Start with a narrow event set such as order.created or invoice.paid. Send those events to one endpoint, verify signature handling, then expand the subscription list once the receiving service has a clean delivery history.

What to monitor after launch

  • Endpoint success rate
  • Recent response codes
  • Dead-lettered deliveries
  • Retry volume
  • Monthly delivery attempts
  • Payload size
  • Rate-limit responses
Praeto Dispatcher is designed so customer support can answer “what happened to this webhook?” without digging through application logs.