Cancel Execution
Cancel a running rule execution. If a rule execution is taking too long, or you realize it was started mistakenly (e.g., wrong asset or rule), you can cancel it to avoid wasted compute.
For example, if the no_null_emails
check starts on a large dataset and you discover a misconfiguration, cancel early to save resources.
After cancellation, the execution will terminate; check status via Get Executions.
Endpoint
PUT /catalog-server/api/rules/execution/:id/cancel
Path Parameters
Name | Type | Description | Example |
---|---|---|---|
id | string | Execution ID | exec-789 |
Sample Request
curl -X POST "https://demo.acceldata.io/catalog-server/api/rules/execution/exec-789/cancel" \
-H "accessKey: <your-access-key>" \
-H "secretKey: <your-secret-key>"
Response Schema
See Execution Schema
Was this page helpful?