Last updated 8 months ago
Get the logs for a job.
Project ID
Job ID
OK
Whether the operation succeeded
Optional error description (set if 'success' was false)
Total number of logs (only the last 1000 lines are returned)
const response = await fetch('https://studio.edgeimpulse.com/v1/api/{projectId}/jobs/{jobId}/stdout', { method: 'GET', headers: {}, }); const data = await response.json();
{ "success": false, "error": "text", "stdout": [ { "created": "2024-12-21T11:36:06.483Z", "data": "text", "logLevel": "error" } ], "totalCount": 0 }