GET
/
api
/
organizations
/
{organizationId}
/
transformation
/
public
List public transformation blocks
curl --request GET \
  --url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/transformation/public \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "error": "<string>",
  "transformationBlocks": [
    {
      "id": 123,
      "ownerOrganizationId": 123,
      "ownerOrganizationName": "<string>",
      "name": "<string>",
      "created": "2023-11-07T05:31:56Z",
      "lastUpdated": "2023-11-07T05:31:56Z",
      "description": "<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
        }
      ],
      "repositoryUrl": "<string>",
      "showInDataSources": true,
      "showInCreateTransformationJob": true,
      "showInSyntheticData": true,
      "showInAIActions": true,
      "aiActionsOperatesOn": [
        "images_object_detection"
      ]
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

organizationId
integer
required

Organization ID

Response

200 - application/json

OK

The response is of type object.