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
curl -L \
  --url 'https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/create-project' \
  --header 'x-api-key: YOUR_API_KEY'
{
  "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-03-26T13:13:46.635Z",
      "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?