Get transformation job status
Get the current status of a transformation job job.
Authorizations
Path parameters
organizationIdintegerRequired
Organization ID
createProjectIdintegerRequired
Create project job ID.
Query parameters
transformLimitintegerRequired
Maximum number of results of transformation jobs
transformOffsetintegerRequired
Offset in results of transformation jobs, can be used in conjunction with TransformLimitResultsParameter to implement paging.
selectionstringOptional
Type of selected rows, either 'all', 'created', 'in-progress' or 'failed' (defaults to 'all')
Responses
200
OK
application/json
Responseall of
get
GET /v1/api/organizations/{organizationId}/create-project/{createProjectId} HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Accept: */*
200
OK
{
"success": true,
"error": "text",
"status": {
"id": 1,
"organizationId": 1,
"name": "text",
"uploadType": "dataset",
"status": "waiting",
"transformJobStatus": "waiting",
"uploadJobId": 1,
"uploadJobStatus": "waiting",
"uploadJobFilesUploaded": 1,
"projectOwner": "text",
"projectId": 1,
"projectName": "text",
"transformationBlockId": 1,
"builtinTransformationBlock": {},
"transformationBlockName": "text",
"category": "training",
"created": "2025-06-21T00:10:41.187Z",
"outputDatasetName": "text",
"outputDatasetBucketId": 1,
"outputDatasetBucketPath": "text",
"totalDownloadFileCount": 1,
"totalDownloadFileSize": 1,
"totalDownloadFileSizeString": "text",
"totalUploadFileCount": 1,
"transformationParallel": 1,
"transformationSummary": {
"startedCount": 1,
"succeededCount": 1,
"finishedCount": 1,
"totalFileCount": 1,
"totalTimeSpentSeconds": 1
},
"inProgress": true,
"label": "text",
"filterQuery": "text",
"emailRecipientUids": [
1
],
"pipelineId": 1,
"pipelineName": "text",
"pipelineRunId": 1,
"pipelineStep": 1,
"operatesOn": "file",
"totalTimeSpentSeconds": 1,
"totalTimeSpentString": "text",
"createdByUser": {
"id": 1,
"name": "text",
"username": "text",
"photo": "text"
},
"files": [
{
"id": 1,
"fileName": "text",
"bucketPath": "text",
"transformationJobId": 1,
"transformationJobStatus": "waiting",
"linkToDataItem": "text",
"lengthString": "text",
"sourceDatasetType": "clinical"
}
],
"fileCountForFilter": 1
}
}
Last updated
Was this helpful?