Get post-processing block config

Get post-processing block config

get

Retrieve the configuration parameters for a post-processing block. Use the impulse functions to retrieve all post-processing blocks.

Authorizations
Path parameters
projectIdintegerRequired

Project ID

postProcessingIdintegerRequired

Post-processing Block ID, use the impulse functions to retrieve the ID

Responses
200
OK
application/json
Responseall of
get
GET /v1/api/{projectId}/post-processing/{postProcessingId} HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Accept: */*
200

OK

{
  "success": true,
  "error": "text",
  "enabled": true,
  "parameters": [
    {
      "name": "Scale axes",
      "value": "text",
      "defaultValue": "text",
      "type": "text",
      "help": "Divide axes by this number",
      "param": "scale-axes",
      "selectOptions": [
        {
          "value": "text",
          "selected": true,
          "optionLabel": "text",
          "priority": 1,
          "romEstimate": 1,
          "needsOps": [
            "text"
          ],
          "needsFeatures": [
            "text"
          ]
        }
      ],
      "readonly": true,
      "shouldShow": true,
      "showIf": {
        "parameter": "text",
        "operator": "eq",
        "value": "text"
      },
      "invalidText": "text",
      "section": "advanced",
      "multiline": true,
      "required": true,
      "hint": "text",
      "placeholder": "text",
      "showClickToSet": true,
      "valid": [
        {}
      ],
      "items": {},
      "properties": {}
    }
  ]
}

Last updated

Was this helpful?