Cancel Job
Jobs
Cancel Job
Cancel a running job.
DELETE
Cancel Job
Stops a running job and returns its final state snapshot.
Use cancellation when conditions or stream context change and the current run is no longer useful.
Common Uses
- Stop stale jobs after client disconnects.
- Enforce custom business-time windows.
- Abort runs that are spending budget without value.
Workflow
- Find active jobs with List Jobs.
- Confirm details with Get Job Details.
- Issue
DELETE /jobs/{job_id}.
Notes
- Cancellation ends future monitoring activity for that job.
- Use Get Job Details after canceling if you need to verify terminal state in a separate call.
Related
- Lifecycle overview: Job Lifecycle
- Troubleshooting: Debugging Playbook
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.