Get information on the last deployment build

Get information on the last deployment build

get

Get information on the result of the last successful deployment job, including info on the build e.g. whether it is still valid.

Authorizations
Path parameters
projectIdintegerrequired

Project ID

Query parameters
impulseIdintegeroptional

Impulse ID. If this is unset then the default impulse is used.

Responses
curl -L \
  --url 'https://studio.edgeimpulse.com/v1/api/{projectId}/deployment/last' \
  --header 'x-api-key: YOUR_API_KEY'
{
  "success": true,
  "error": "text",
  "hasBuild": true,
  "lastBuild": {
    "version": 1,
    "deploymentType": "text",
    "engine": "tflite",
    "modelType": "int8",
    "created": "2025-03-26T13:13:46.635Z"
  },
  "lastDeploymentTarget": {
    "name": "text",
    "description": "text",
    "image": "text",
    "imageClasses": "text",
    "format": "text",
    "latencyDevice": "text",
    "hasEonCompiler": true,
    "hasTensorRT": true,
    "hasTensaiFlow": true,
    "hasDRPAI": true,
    "hasTIDL": true,
    "hasAkida": true,
    "hasMemryx": true,
    "hasStAton": true,
    "hideOptimizations": true,
    "badge": {
      "name": "text",
      "description": "text"
    },
    "uiSection": "library",
    "customDeployId": 1,
    "integrateUrl": "text",
    "ownerOrganizationName": "text",
    "supportedEngines": [
      "tflite"
    ],
    "preferredEngine": "tflite",
    "url": "text",
    "docsUrl": "text",
    "firmwareRepoUrl": "text",
    "modelVariants": [
      {
        "variant": "int8",
        "supported": true,
        "hint": "text"
      }
    ],
    "recommendedForProject": true,
    "disabledForProject": true,
    "reasonTargetDisabled": "text"
  }
}

Last updated

Was this helpful?