Get impulse blocks

Get impulse blocks

get

Lists all possible DSP and ML blocks available for this white label.

Authorizations
Path parameters
whitelabelIdentifierintegerRequired

Whitelabel ID

Responses
200
OK
application/json
Responseall of
get
GET /v1/api/whitelabel/{whitelabelIdentifier}/impulse/blocks HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Accept: */*
200

OK

{
  "success": true,
  "error": "text",
  "inputBlocks": [
    {
      "type": "time-series",
      "title": "Time series",
      "author": "Edge Impulse Inc.",
      "description": "text",
      "name": "Time series",
      "blockType": "official"
    }
  ],
  "dspBlocks": [
    {
      "type": "spectral-analysis",
      "title": "Spectral features",
      "author": "Edge Impulse Inc.",
      "description": "text",
      "name": "Spectral analysis",
      "recommended": true,
      "experimental": true,
      "latestImplementationVersion": 1,
      "organizationId": 1,
      "organizationDspId": 1,
      "blockType": "official",
      "namedAxes": [
        {
          "name": "text",
          "description": "text",
          "required": true
        }
      ],
      "supportedTargets": [
        "brainchip-akd1000"
      ]
    }
  ],
  "learnBlocks": [
    {
      "type": "spectral-analysis",
      "title": "Spectral features",
      "author": "Edge Impulse Inc.",
      "description": "text",
      "name": "Spectral analysis",
      "recommended": true,
      "organizationModelId": 1,
      "publicProjectTierAvailability": "enterprise-only",
      "isPublicEnterpriseOnly": true,
      "blockType": "official",
      "displayCategory": "classical",
      "supportedTargets": [
        "brainchip-akd1000"
      ]
    }
  ],
  "postProcessingBlocks": [
    {
      "type": "object-tracking",
      "title": "Object tracking",
      "author": "Edge Impulse Inc.",
      "description": "text",
      "name": "Object tracking",
      "recommended": true,
      "experimental": true,
      "latestImplementationVersion": 1,
      "blockType": "official",
      "supportedTargets": [
        "brainchip-akd1000"
      ],
      "defaultParameters": [
        {
          "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?