Skip to main content
GET
/
api
/
organizations
/
{organizationId}
/
create-project
List transformation jobs
curl --request GET \
  --url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/create-project \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "error": "<string>",
  "totalJobCount": 123,
  "jobs": [
    {
      "id": 123,
      "organizationId": 123,
      "name": "<string>",
      "uploadType": "dataset",
      "transformJobStatus": "waiting",
      "uploadJobId": 123,
      "uploadJobStatus": "waiting",
      "projectOwner": "<string>",
      "projectId": 123,
      "projectName": "<string>",
      "transformationBlockId": 123,
      "builtinTransformationBlock": {},
      "transformationBlockName": "<string>",
      "transformationOperatesOn": "file",
      "created": "2023-11-07T05:31:56Z",
      "outputDatasetName": "<string>",
      "outputDatasetBucketId": 123,
      "outputDatasetBucketPath": "<string>",
      "totalDownloadFileCount": 123,
      "totalDownloadFileSize": 123,
      "totalDownloadFileSizeString": "<string>",
      "totalUploadFileCount": 123,
      "totalTimeSpentSeconds": 123,
      "totalTimeSpentString": "<string>",
      "createdByUser": {
        "id": 123,
        "name": "<string>",
        "username": "<string>",
        "photo": "<string>"
      }
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

organizationId
integer
required

Organization ID

Query Parameters

limit
integer

Maximum number of results

offset
integer

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

includePipelineJobs
boolean

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

Response

200 - application/json

OK

success
boolean
required

Whether the operation succeeded

totalJobCount
integer
required
jobs
object[]
required
error
string

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

I