Skip to main content
GET
/
api
/
v1
/
jobs
List jobs
curl --request GET \
  --url http://localhost:3000/api/v1/jobs \
  --cookie nut-session=
{
  "success": true,
  "data": {
    "jobs": [
      {
        "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

Response

List of jobs

success
boolean
required
data
object