WEBHOOKS

Trigger workflows without polling.

Customer-created LaunchPad automations can expose an opaque webhook URL. The token belongs in the URL and is stored hash-only by LaunchPad.

POST/api/v1/automations/hooks/{id}/{token}

Automation webhook

Use this only with the hook URL generated for a customer's automation. The token is shown when created or rotated and should be treated like a secret.

curl -sS -X POST \
  https://leadstrium.com/api/v1/automations/hooks/HOOK_ID/HOOK_TOKEN

Retry carefully

Use bounded retries with backoff. Do not create retry storms when a downstream service is unavailable.

Keep tokens private

Do not place webhook URLs in public source, analytics payloads or client-side logs.

Rotate when exposed

Customers can rotate a hook token from My Leadstrium. Old tokens stop authorizing the hook.