GET
/
api
/
organizations
/
{organizationId}
/
data
/
{dataId}
/
transformation-jobs
Get transformation jobs for data item
curl --request GET \
  --url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/data/{dataId}/transformation-jobs \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "error": "<string>",
  "transformationJobs": [
    {
      "id": 123,
      "transformationJobId": 123,
      "createProjectId": 123,
      "created": "2023-11-07T05:31:56Z",
      "jobId": 123,
      "jobStarted": "2023-11-07T05:31:56Z",
      "jobFinished": "2023-11-07T05:31:56Z",
      "jobFinishedSuccessful": true,
      "transformationBlockName": "<string>",
      "pipelineName": "<string>"
    }
  ],
  "totalTransformationJobCount": 123
}

Authorizations

x-api-key
string
header
required

Path Parameters

organizationId
integer
required

Organization ID

dataId
integer
required

Data ID

Query Parameters

limit
integer

Maximum number of results

offset
integer

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

Response

200 - application/json

OK

The response is of type object.