Last updated 10 months ago
Was this helpful?
Get all active jobs for this project
/api/{projectId}/jobs
Project ID
Whether to exclude jobs with a parent ID (so jobs started as part of another job)
curl -L \ --url 'https://studio.edgeimpulse.com/v1/api/{projectId}/jobs' \ --header 'x-api-key: YOUR_API_KEY'
{ "success": true, "error": "text", "totalJobCount": 1, "jobs": [ { "id": 1, "category": "text", "key": "text", "created": "2025-02-21T18:11:52.031Z", "started": "2025-02-21T18:11:52.031Z", "finished": "2025-02-21T18:11:52.031Z", "finishedSuccessful": true, "additionalInfo": "text", "computeTime": 1, "createdByUser": { "id": 1, "name": "text", "username": "text", "photo": "text" }, "categoryCount": 1, "jobNotificationUids": [ 1 ] } ] }