List transformation jobs

List transformation jobs

get

Get list of transformation jobs.

Authorizations
Path parameters
organizationIdintegerRequired

Organization ID

Query parameters
limitintegerOptional

Maximum number of results

offsetintegerOptional

Offset in results, can be used in conjunction with LimitResultsParameter to implement paging.

includePipelineJobsbooleanOptional

If enabled, also includes jobs that are part of a pipeline

Responses
200
OK
application/json
Responseall of
get
GET /v1/api/organizations/{organizationId}/create-project HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Accept: */*
200

OK

{
  "success": true,
  "error": "text",
  "totalJobCount": 1,
  "jobs": [
    {
      "id": 1,
      "organizationId": 1,
      "name": "text",
      "uploadType": "dataset",
      "transformJobStatus": "waiting",
      "uploadJobId": 1,
      "uploadJobStatus": "waiting",
      "projectOwner": "text",
      "projectId": 1,
      "projectName": "text",
      "transformationBlockId": 1,
      "builtinTransformationBlock": {},
      "transformationBlockName": "text",
      "transformationOperatesOn": "file",
      "created": "2025-07-21T23:42:22.138Z",
      "outputDatasetName": "text",
      "outputDatasetBucketId": 1,
      "outputDatasetBucketPath": "text",
      "totalDownloadFileCount": 1,
      "totalDownloadFileSize": 1,
      "totalDownloadFileSizeString": "text",
      "totalUploadFileCount": 1,
      "totalTimeSpentSeconds": 1,
      "totalTimeSpentString": "text",
      "createdByUser": {
        "id": 1,
        "name": "text",
        "username": "text",
        "photo": "text"
      }
    }
  ]
}

Last updated

Was this helpful?