Webhooks

Webhooks let AeThex notify external systems when events happen, reducing the need for polling.

Event delivery

Use webhooks when an integration needs to react to changes in near real time.

Webhooks may be used for project events, identity changes, organization updates, support workflows, build notifications, or integration-specific events as the platform expands.

Webhook lifecycle

  1. Register an endpoint for a project or organization.
  2. Select event types.
  3. Store and protect the signing secret.
  4. Verify signatures on incoming requests.
  5. Return success quickly and process work asynchronously.
  6. Monitor failures and retries.

Receiver checklist

  • Use HTTPS.
  • Verify signatures before trusting payloads.
  • Make handlers idempotent.
  • Log event IDs for debugging.
  • Handle retries safely.
  • Respect Rate-Limits.
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9