curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/transformation/public/{transformationId} \
--header 'x-api-key: <api-key>'{
"success": true,
"transformationBlock": {
"id": 123,
"ownerOrganizationId": 123,
"ownerOrganizationName": "<string>",
"name": "<string>",
"created": "2023-11-07T05:31:56Z",
"description": "<string>",
"operatesOn": "file",
"allowExtraCliArguments": true,
"showInDataSources": true,
"showInCreateTransformationJob": true,
"showInSyntheticData": true,
"showInAIActions": true,
"lastUpdated": "2023-11-07T05:31:56Z",
"parameters": [
{}
],
"parametersUI": [
{
"name": "Scale axes",
"defaultValue": "<string>",
"type": "text",
"param": "scale-axes",
"readonly": true,
"shouldShow": true,
"required": true,
"showClickToSet": true,
"value": "<string>",
"help": "Divide axes by this number",
"selectOptions": [
{
"value": "<string>",
"selected": true,
"optionLabel": "<string>",
"priority": 123,
"romEstimate": 123,
"needsOps": [
"<string>"
],
"needsFeatures": [
"<string>"
]
}
],
"showIf": {
"parameter": "<string>",
"operator": "eq",
"value": "<string>"
},
"invalidText": "<string>",
"section": "advanced",
"multiline": true,
"hint": "<string>",
"placeholder": "<string>",
"valid": [
{}
],
"items": {},
"properties": {}
}
],
"repositoryUrl": "<string>",
"aiActionsOperatesOn": [
"images_object_detection"
]
},
"error": "<string>"
}Retrieve a transformation blocks published by other organizations, available for all organizations.
curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/transformation/public/{transformationId} \
--header 'x-api-key: <api-key>'{
"success": true,
"transformationBlock": {
"id": 123,
"ownerOrganizationId": 123,
"ownerOrganizationName": "<string>",
"name": "<string>",
"created": "2023-11-07T05:31:56Z",
"description": "<string>",
"operatesOn": "file",
"allowExtraCliArguments": true,
"showInDataSources": true,
"showInCreateTransformationJob": true,
"showInSyntheticData": true,
"showInAIActions": true,
"lastUpdated": "2023-11-07T05:31:56Z",
"parameters": [
{}
],
"parametersUI": [
{
"name": "Scale axes",
"defaultValue": "<string>",
"type": "text",
"param": "scale-axes",
"readonly": true,
"shouldShow": true,
"required": true,
"showClickToSet": true,
"value": "<string>",
"help": "Divide axes by this number",
"selectOptions": [
{
"value": "<string>",
"selected": true,
"optionLabel": "<string>",
"priority": 123,
"romEstimate": 123,
"needsOps": [
"<string>"
],
"needsFeatures": [
"<string>"
]
}
],
"showIf": {
"parameter": "<string>",
"operator": "eq",
"value": "<string>"
},
"invalidText": "<string>",
"section": "advanced",
"multiline": true,
"hint": "<string>",
"placeholder": "<string>",
"valid": [
{}
],
"items": {},
"properties": {}
}
],
"repositoryUrl": "<string>",
"aiActionsOperatesOn": [
"images_object_detection"
]
},
"error": "<string>"
}Organization ID
Transformation block ID.
OK
Whether the operation succeeded
Show child attributes
file, directory, standalone Whether to show this block in 'Data sources'. Only applies for standalone blocks.
Whether to show this block in 'Create transformation job'. Only applies for standalone blocks.
Whether to show this block in 'Synthetic data'. Only applies for standalone blocks.
Whether to show this block in 'AI Labeling'. Only applies for standalone blocks.
List of parameters, spec'ed according to https://docs.edgeimpulse.com/docs/tips-and-tricks/adding-parameters-to-custom-blocks
List of parameters to be rendered in the UI
Show child attributes
"Scale axes"
"text"
"scale-axes"
If enabled, render a disabled input element with 'Click to set'
"Divide axes by this number"
Show child attributes
What is the string that will be set if this option is selected?
What is the label that will be shown to the user for this option?
The following options are optional. See Learn Block Auto Config in Notion. Higher priority will get chosen based on limits below.
Estimated ROM footprint for this choice. Will be tested against ROM budget in Studio.
ML operator needed by this choice.
Feature needed by this choice. (non op related)
Interface section to render parameter in.
advanced, augmentation, modelProfiling Only valid for type "string". Will render a multiline text area.
If set, shows a hint below the input.
Sets the placeholder text on the input element (for types "string", "int", "float" and "secret")
Valid values for parameter.
Recursive definition for items of a parameter with type 'array'.
Recursive definition for a parameter with type 'object'.
URL to the source code of this custom learn block.
For AI labeling blocks, this lists the data types that the block supports. If this field is empty then there's no information about supported data types.
images_object_detection, images_single_label, audio, other Optional error description (set if 'success' was false)
Was this page helpful?