Get deploy block

Get deploy block

get

Gets a deploy block.

Authorizations
Path parameters
organizationIdintegerRequired

Organization ID

deployIdintegerRequired

Deploy block ID.

Responses
200
OK
application/json
Responseall of
get
GET /v1/api/organizations/{organizationId}/deploy/{deployId} HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Accept: */*
200

OK

{
  "success": true,
  "error": "text",
  "deployBlock": {
    "id": 1,
    "name": "text",
    "dockerContainer": "text",
    "dockerContainerManagedByEdgeImpulse": true,
    "created": "2025-07-12T03:27:52.096Z",
    "createdByUser": {
      "id": 1,
      "name": "text",
      "username": "text",
      "photo": "text"
    },
    "lastUpdated": "2025-07-12T03:27:52.096Z",
    "lastUpdatedByUser": {
      "id": 1,
      "name": "text",
      "username": "text",
      "photo": "text"
    },
    "userId": 1,
    "userName": "text",
    "description": "text",
    "cliArguments": "text",
    "requestsCpu": 1,
    "requestsMemory": 1,
    "limitsCpu": 1,
    "limitsMemory": 1,
    "photo": "text",
    "integrateUrl": "text",
    "privileged": true,
    "mountLearnBlock": true,
    "supportsEonCompiler": true,
    "showOptimizations": true,
    "category": "library",
    "sourceCodeAvailable": true,
    "sourceCodeDownloadStaffOnly": true
  }
}

Last updated

Was this helpful?