List finished jobs

List finished jobs

Get all finished jobs for this project

get

/api/{projectId}/jobs/history

Authorizations
Path parameters
projectIdintegerrequired

Project ID

Query parameters
startDatestring · date-time

Start date

endDatestring · date-time

End date

limitinteger

Maximum number of results

offsetinteger

Offset in results, can be used in conjunction with LimitResultsParameter to implement paging.

rootOnlyboolean

Whether to exclude jobs with a parent ID (so jobs started as part of another job)

Responses
curl -L \
  --url 'https://studio.edgeimpulse.com/v1/api/{projectId}/jobs/history' \
  --header 'x-api-key: YOUR_API_KEY'
{
  "success": true,
  "error": "text",
  "totalJobCount": 1,
  "jobs": [
    {
      "id": 1,
      "category": "text",
      "key": "text",
      "created": "2025-02-21T18:13:57.422Z",
      "started": "2025-02-21T18:13:57.422Z",
      "finished": "2025-02-21T18:13:57.422Z",
      "finishedSuccessful": true,
      "additionalInfo": "text",
      "computeTime": 1,
      "createdByUser": {
        "id": 1,
        "name": "text",
        "username": "text",
        "photo": "text"
      },
      "categoryCount": 1,
      "jobNotificationUids": [
        1
      ]
    }
  ]
}

Last updated

Was this helpful?