Skip to main content
GET
/
api
/
v1
/
jobs
/
{id}
/
runs
Get job runs
curl --request GET \
  --url http://localhost:3001/api/v1/jobs/{id}/runs \
  --cookie nut-session=
{
  "success": true,
  "data": {
    "runs": [
      {
        "id": "<string>",
        "jobId": "<string>",
        "trigger": "manual",
        "status": "pending",
        "startedAt": "2023-11-07T05:31:56Z",
        "finishedAt": "2023-11-07T05:31:56Z",
        "outputPath": "<string>",
        "summary": "<string>",
        "error": "<string>",
        "cliCommand": "<string>"
      }
    ]
  }
}

Authorizations

nut-session
string
cookie
required

Session cookie authentication

Path Parameters

id
string
required

Job ID

Response

Job run history

success
boolean
required
data
object