List finished jobs
Get all finished jobs for this project
Authorizations
Path parameters
projectIdintegerRequired
Project ID
Query parameters
startDatestring · date-timeOptional
Start date
endDatestring · date-timeOptional
End date
limitintegerOptional
Maximum number of results
offsetintegerOptional
Offset in results, can be used in conjunction with LimitResultsParameter to implement paging.
rootOnlybooleanOptional
Whether to exclude jobs with a parent ID (so jobs started as part of another job)
Responses
200
OK
application/json
Responseall of
get
GET /v1/api/{projectId}/jobs/history HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Accept: */*
200
OK
{
"success": true,
"error": "text",
"jobs": [
{
"id": 1,
"category": "text",
"key": "text",
"created": "2025-06-27T08:04:15.548Z",
"started": "2025-06-27T08:04:15.548Z",
"finished": "2025-06-27T08:04:15.548Z",
"finishedSuccessful": true,
"jobNotificationUids": [
1
],
"additionalInfo": "text",
"computeTime": 1,
"createdByUser": {
"id": 1,
"name": "text",
"username": "text",
"photo": "text"
},
"categoryCount": 1,
"metadata": {}
}
],
"totalJobCount": 1
}
Last updated
Was this helpful?