Skip to main content
GET
/
api
/
v1
/
jobs
/
{id}
Get job
curl --request GET \
  --url http://localhost:3000/api/v1/jobs/{id} \
  --cookie nut-session=
{
  "success": true,
  "data": {
    "job": {
      "id": "<string>",
      "name": "<string>",
      "schedule": "<string>",
      "description": "<string>",
      "task": {},
      "enabled": true,
      "lastRun": "2023-11-07T05:31:56Z",
      "nextRun": "2023-11-07T05:31:56Z",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  }
}

Authorizations

nut-session
string
cookie
required

Session cookie authentication

Path Parameters

id
string
required

Job ID

Response

Job details

success
boolean
required
data
object