Deployment targets (data sources)

Deployment targets (data sources)

List deployment targets for a project from data sources page (it shows some things like all Linux deploys, and hides 'fake' deploy targets like mobile phone / computer)

GEThttps://studio.edgeimpulse.com/v1/api/{projectId}/deployment/targets/data-sources
Path parameters
projectId*integer

Project ID

Response

OK

Body
success*boolean

Whether the operation succeeded

errorstring

Optional error description (set if 'success' was false)

targets*array of DeploymentTarget (object)
Request
const response = await fetch('https://studio.edgeimpulse.com/v1/api/{projectId}/deployment/targets/data-sources', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "success": false,
  "error": "text",
  "targets": [
    {
      "name": "text",
      "description": "text",
      "image": "text",
      "imageClasses": "text",
      "format": "text",
      "latencyDevice": "text",
      "hasEonCompiler": false,
      "hasTensorRT": false,
      "hasTensaiFlow": false,
      "hasDRPAI": false,
      "hasTIDL": false,
      "hasAkida": false,
      "hasMemryx": false,
      "hideOptimizations": false,
      "badge": {
        "name": "text",
        "description": "text"
      },
      "uiSection": "library",
      "integrateUrl": "text",
      "ownerOrganizationName": "text",
      "supportedEngines": [
        "tflite"
      ],
      "preferredEngine": "tflite",
      "url": "text",
      "docsUrl": "text",
      "firmwareRepoUrl": "text"
    }
  ]
}

Last updated