Last updated 9 months ago
Get the status for a job.
Organization ID
Job ID
OK
Whether the operation succeeded
Optional error description (set if 'success' was false)
const response = await fetch('https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/jobs/{jobId}/status', { method: 'GET', headers: {}, }); const data = await response.json();
{ "success": false, "error": "text", "job": { "id": 0, "category": "text", "key": "text", "created": "2025-01-21T00:51:44.090Z", "started": "2025-01-21T00:51:44.090Z", "finished": "2025-01-21T00:51:44.090Z", "finishedSuccessful": false, "jobNotificationUids": [ 0 ], "additionalInfo": "text", "computeTime": 0, "createdByUser": { "id": 0, "name": "text", "username": "text", "photo": "text" }, "categoryCount": 0 } }