> ## Documentation Index
> Fetch the complete documentation index at: https://docs.casaai.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Workflow Webhook

Receive workflow events (screening decisions, maintenance dispatches, KPI exports). Verify signatures using `X-CasaAI-Signature` (HMAC-SHA256).

<RequestExample>
  ```json theme={null}
  {
    "type": "screening.decision",
    "run_id": "run_123",
    "status": "approved",
    "payload": {
      "tenant_id": "app_78431",
      "score": 86,
      "rationale": ["Income multiple 3.2x", "Credit clean"]
    }
  }
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  { "received": true }
  ```
</ResponseExample>
