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

# Run Workflow Now

> Trigger an immediate pass instead of waiting for the next one

Runs the Workflow's pass right away. It still only fires on real transitions —
records entering, leaving, or a schedule coming due — never on the whole
membership at once, so this is safe to call any time you don't want to wait
for the next scheduled pass.

## Path Parameters

<ParamField path="id" type="string" required>
  The Workflow's id.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST "https://api.clustr-ai.com/api/public/workflows/7f1e2a33-.../run" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": { "message": "Run started" }
  }
  ```

  ```json 404 theme={null}
  {
    "success": false,
    "error": { "message": "workflow not found", "code": "NOT_FOUND" }
  }
  ```
</ResponseExample>
