Get job status

Get job status

get

Get the status for a job.

Authorizations
Path parameters
organizationIdintegerrequired

Organization ID

jobIdintegerrequired

Job ID

Responses
curl -L \
  --url 'https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/jobs/{jobId}/status' \
  --header 'x-api-key: YOUR_API_KEY'
{
  "success": true,
  "error": "text",
  "job": {
    "id": 1,
    "category": "text",
    "key": "text",
    "created": "2025-03-26T13:00:25.418Z",
    "started": "2025-03-26T13:00:25.418Z",
    "finished": "2025-03-26T13:00:25.418Z",
    "finishedSuccessful": true,
    "jobNotificationUids": [
      1
    ],
    "additionalInfo": "text",
    "computeTime": 1,
    "createdByUser": {
      "id": 1,
      "name": "text",
      "username": "text",
      "photo": "text"
    },
    "categoryCount": 1
  }
}

Last updated

Was this helpful?