Get transformation jobs for data item
Get all transformation jobs that ran for a data item. If limit / offset is not provided then max. 20 results are returned.
Authorizations
Path parameters
organizationIdintegerRequired
Organization ID
dataIdintegerRequired
Data ID
Query parameters
limitintegerOptional
Maximum number of results
offsetintegerOptional
Offset in results, can be used in conjunction with LimitResultsParameter to implement paging.
Responses
200
OK
application/json
Responseall of
get
GET /v1/api/organizations/{organizationId}/data/{dataId}/transformation-jobs HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Accept: */*
200
OK
{
"success": true,
"error": "text",
"transformationJobs": [
{
"id": 1,
"transformationJobId": 1,
"createProjectId": 1,
"created": "2025-07-05T21:21:55.262Z",
"jobId": 1,
"jobStarted": "2025-07-05T21:21:55.262Z",
"jobFinished": "2025-07-05T21:21:55.262Z",
"jobFinishedSuccessful": true,
"transformationBlockName": "text",
"pipelineName": "text"
}
],
"totalTransformationJobCount": 1
}
Last updated
Was this helpful?