GET
/
api
/
organizations
/
{organizationId}
/
create-project
/
{createProjectId}
Get transformation job status
curl --request GET \
  --url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/create-project/{createProjectId} \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "error": "<string>",
  "status": {
    "id": 123,
    "organizationId": 123,
    "name": "<string>",
    "uploadType": "dataset",
    "status": "waiting",
    "transformJobStatus": "waiting",
    "uploadJobId": 123,
    "uploadJobStatus": "waiting",
    "uploadJobFilesUploaded": 123,
    "projectOwner": "<string>",
    "projectId": 123,
    "projectName": "<string>",
    "transformationBlockId": 123,
    "builtinTransformationBlock": {},
    "transformationBlockName": "<string>",
    "category": "training",
    "created": "2023-11-07T05:31:56Z",
    "outputDatasetName": "<string>",
    "outputDatasetBucketId": 123,
    "outputDatasetBucketPath": "<string>",
    "totalDownloadFileCount": 123,
    "totalDownloadFileSize": 123,
    "totalDownloadFileSizeString": "<string>",
    "totalUploadFileCount": 123,
    "transformationParallel": 123,
    "transformationSummary": {
      "startedCount": 123,
      "succeededCount": 123,
      "finishedCount": 123,
      "totalFileCount": 123,
      "totalTimeSpentSeconds": 123
    },
    "inProgress": true,
    "label": "<string>",
    "filterQuery": "<string>",
    "emailRecipientUids": [
      123
    ],
    "pipelineId": 123,
    "pipelineName": "<string>",
    "pipelineRunId": 123,
    "pipelineStep": 123,
    "operatesOn": "file",
    "totalTimeSpentSeconds": 123,
    "totalTimeSpentString": "<string>",
    "createdByUser": {
      "id": 123,
      "name": "<string>",
      "username": "<string>",
      "photo": "<string>"
    },
    "files": [
      {
        "id": 123,
        "fileName": "<string>",
        "bucketPath": "<string>",
        "transformationJobId": 123,
        "transformationJobStatus": "waiting",
        "linkToDataItem": "<string>",
        "lengthString": "<string>",
        "sourceDatasetType": "clinical"
      }
    ],
    "fileCountForFilter": 123
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

organizationId
integer
required

Organization ID

createProjectId
integer
required

Create project job ID.

Query Parameters

transformLimit
integer
required

Maximum number of results of transformation jobs

transformOffset
integer
required

Offset in results of transformation jobs, can be used in conjunction with TransformLimitResultsParameter to implement paging.

selection
string

Type of selected rows, either 'all', 'created', 'in-progress' or 'failed' (defaults to 'all')

Response

200 - application/json

OK

The response is of type object.