curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/{projectId}/post-processing/{postProcessingId} \
--header 'x-api-key: <api-key>'{
"success": true,
"enabled": true,
"parameters": [
{
"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": {}
}
],
"error": "<string>"
}Retrieve the configuration parameters for a post-processing block. Use the impulse functions to retrieve all post-processing blocks.
curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/{projectId}/post-processing/{postProcessingId} \
--header 'x-api-key: <api-key>'{
"success": true,
"enabled": true,
"parameters": [
{
"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": {}
}
],
"error": "<string>"
}Project ID
Post-processing Block ID, use the impulse functions to retrieve the ID
OK
Whether the operation succeeded
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'.
Optional error description (set if 'success' was false)
Was this page helpful?