Project Webhooks
Current signed-delivery and event behavior for Projects webhooks.
Projects webhooks use the shared Leenops delivery engine and may be workspace-wide or scoped to one project.
Delivery is asynchronous and can take up to 24 hours on the current service tier. Use a test delivery to validate the receiver immediately.
Configure
Use the Projects webhook settings to provide:
- an HTTPS URL;
- one or more event names;
- an optional project scope;
- an enabled state;
- a secret of at least 16 characters, or an auto-generated secret.
The current settings action recognizes the following intended event names:
issue.createdissue.updatedissue.status_changedissue.assignee_changedissue.deletedcomment.addedproject.updatedwebhook.test
Some event names retain compatibility aliases. Treat the name shown in test payloads and delivery history as authoritative, and make receivers tolerant of documented aliases.
Signed request
Every attempt includes:
X-Leenops-Signature: sha256=<hex>
X-Leenops-Timestamp: <unix-seconds>
X-Leenops-Event: <event-name>
X-Leenops-Delivery-Id: <delivery-uuid>
X-Leenops-Module: projectsCompute HMAC-SHA256 over:
<timestamp-seconds>.<raw-json-body>using the webhook secret. Compare the sha256=<hex> value in constant time, reject stale timestamps, and deduplicate using the delivery ID. The Support webhook guide includes a Node.js verifier for this shared signature contract.
Delivery behavior
2xxmarks the delivery successful.429,5xx, network errors, and the 10-second timeout are retryable.- Other
4xxresponses are permanent failures. - The engine allows four attempts total and records retry due times at 1, 5, and 30 minutes.
- With a daily worker, a retryable row may wait until the next daily drain even after its due time.
Test checklist
- Use a disposable project and webhook.
- Send
webhook.testand verify headers/signature. - Subscribe to the exact emitted event string for the write path under test.
- confirm a queue/delivery row appears.
- return
2xxpromptly. - confirm duplicate delivery IDs are handled safely.

