Get job status

Get job status

Get the status for a job.

GEThttps://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/jobs/{jobId}/status
Path parameters
organizationId*integer

Organization ID

jobId*integer

Job ID

Response

OK

Body
success*boolean

Whether the operation succeeded

errorstring

Optional error description (set if 'success' was false)

job*Job (object)
Request
const response = await fetch('https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/jobs/{jobId}/status', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "success": false,
  "error": "text",
  "job": {
    "category": "text",
    "key": "text",
    "created": "2024-10-27T16:21:32.295Z",
    "started": "2024-10-27T16:21:32.295Z",
    "finished": "2024-10-27T16:21:32.295Z",
    "finishedSuccessful": false,
    "jobNotificationUids": [],
    "additionalInfo": "text",
    "computeTime": 0,
    "createdByUser": {
      "name": "text",
      "username": "text",
      "photo": "text"
    }
  }
}

Last updated