GET
/
api
/
organizations
/
{organizationId}
/
transformation
/
{transformationId}
Get transformation block
curl --request GET \
  --url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/transformation/{transformationId} \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "error": "<string>",
  "transformationBlock": {
    "id": 123,
    "name": "<string>",
    "dockerContainer": "<string>",
    "dockerContainerManagedByEdgeImpulse": true,
    "created": "2023-11-07T05:31:56Z",
    "createdByUser": {
      "id": 123,
      "name": "<string>",
      "username": "<string>",
      "photo": "<string>"
    },
    "lastUpdated": "2023-11-07T05:31:56Z",
    "lastUpdatedByUser": {
      "id": 123,
      "name": "<string>",
      "username": "<string>",
      "photo": "<string>"
    },
    "userId": 123,
    "userName": "<string>",
    "description": "<string>",
    "cliArguments": "<string>",
    "indMetadata": true,
    "requestsCpu": 123,
    "requestsMemory": 123,
    "limitsCpu": 123,
    "limitsMemory": 123,
    "additionalMountPoints": [
      {
        "type": "bucket",
        "bucketId": 123,
        "portalId": 123,
        "mountPoint": "<string>"
      }
    ],
    "operatesOn": "file",
    "allowExtraCliArguments": true,
    "parameters": [
      {}
    ],
    "parametersUI": [
      {
        "name": "Scale axes",
        "value": "<string>",
        "defaultValue": "<string>",
        "type": "text",
        "help": "Divide axes by this number",
        "param": "scale-axes",
        "selectOptions": [
          {
            "value": "<string>",
            "selected": true,
            "optionLabel": "<string>",
            "priority": 123,
            "romEstimate": 123,
            "needsOps": [
              "<string>"
            ],
            "needsFeatures": [
              "<string>"
            ]
          }
        ],
        "readonly": true,
        "shouldShow": true,
        "showIf": {
          "parameter": "<string>",
          "operator": "eq",
          "value": "<string>"
        },
        "invalidText": "<string>",
        "section": "advanced",
        "multiline": true,
        "required": true,
        "hint": "<string>",
        "placeholder": "<string>",
        "showClickToSet": true
      }
    ],
    "maxRunningTimeStr": "<string>",
    "sourceCodeAvailable": true,
    "sourceCodeDownloadStaffOnly": true,
    "repositoryUrl": "<string>",
    "isPublic": true,
    "showInDataSources": true,
    "showInCreateTransformationJob": true,
    "showInSyntheticData": true,
    "showInAIActions": true,
    "environmentVariables": [
      {
        "key": "<string>",
        "value": "<string>"
      }
    ],
    "aiActionsOperatesOn": [
      "images_object_detection"
    ]
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

organizationId
integer
required

Organization ID

transformationId
integer
required

Transformation block ID.

Response

200 - application/json

OK

The response is of type object.