Last updated 7 months ago
Get all finished jobs for this project
Project ID
OK
Whether the operation succeeded
Optional error description (set if 'success' was false)
Active jobs
const response = await fetch('https://studio.edgeimpulse.com/v1/api/{projectId}/jobs/history', { method: 'GET', headers: {}, }); const data = await response.json();
{ "success": false, "error": "text", "jobs": [ { "category": "text", "key": "text", "created": "2024-11-21T08:58:59.231Z", "started": "2024-11-21T08:58:59.231Z", "finished": "2024-11-21T08:58:59.231Z", "finishedSuccessful": false, "jobNotificationUids": [], "additionalInfo": "text", "computeTime": 0, "createdByUser": { "name": "text", "username": "text", "photo": "text" } } ] }