Start typing to search.

API Reference

Resume a paused or failed job run

View Markdown
POST /api/job-runs/{id}/resume

Resumes execution from where it left off, skipping already-completed tasks. Uses the same snapshotted YAML and pinned task versions from the parent job.

Operation IDresumeJobRun

Authentication

  • BearerAuth·http bearer·API key token (envoy_<hex>). Create keys from Settings → API Keys — see Using the API.

Path parameters

idintegerrequired

Resource ID

Success response body

200Resume initiated

Resume initiated

Content typeapplication/json

responseobject
1 property
successboolean

Error responses

400Job run cannot be resumed (wrong status)

Job run cannot be resumed (wrong status)

Content typeapplication/json

responseobject
2 properties
errorstring
messagestring

404Resource not found

Resource not found

Content typeapplication/json

responseobject
2 properties
errorstring
messagestring
Example response
{
  "error": "NOT_FOUND",
  "message": "Resource not found"
}