GET
/
api
/
{projectId}
/
post-processing
/
{postProcessingId}
Get post-processing block config
curl --request GET \
  --url https://studio.edgeimpulse.com/v1/api/{projectId}/post-processing/{postProcessingId} \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "error": "<string>",
  "enabled": true,
  "parameters": [
    {
      "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
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

projectId
integer
required

Project ID

postProcessingId
integer
required

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

Response

200 - application/json

OK

The response is of type object.