Skip to main content
POST
/
api
/
v1
/
jobs
/
{id}
/
run
Run job
curl --request POST \
  --url http://localhost:3000/api/v1/jobs/{id}/run \
  --cookie nut-session=
{
  "success": true,
  "data": {
    "run": {
      "id": "<string>",
      "jobId": "<string>",
      "status": "pending",
      "startedAt": "2023-11-07T05:31:56Z",
      "completedAt": "2023-11-07T05:31:56Z",
      "output": "<string>",
      "error": "<string>"
    }
  }
}

Authorizations

nut-session
string
cookie
required

Session cookie authentication

Path Parameters

id
string
required

Job ID

Response

Job triggered

success
boolean
required
data
object