List active jobs

List active jobs

Get all active jobs for this project

GEThttps://studio.edgeimpulse.com/v1/api/{projectId}/jobs
Path parameters
projectId*integer

Project ID

Query parameters
Response

OK

Body
success*boolean

Whether the operation succeeded

errorstring

Optional error description (set if 'success' was false)

jobs*array of Job (object)

Active jobs

totalJobCount*integer
Request
const response = await fetch('https://studio.edgeimpulse.com/v1/api/{projectId}/jobs', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "success": false,
  "error": "text",
  "jobs": [
    {
      "id": 0,
      "category": "text",
      "key": "text",
      "created": "2025-01-21T00:52:31.482Z",
      "started": "2025-01-21T00:52:31.482Z",
      "finished": "2025-01-21T00:52:31.482Z",
      "finishedSuccessful": false,
      "jobNotificationUids": [
        0
      ],
      "additionalInfo": "text",
      "computeTime": 0,
      "createdByUser": {
        "id": 0,
        "name": "text",
        "username": "text",
        "photo": "text"
      },
      "categoryCount": 0
    }
  ],
  "totalJobCount": 0
}

Last updated