Get deploy blocks

Get deploy blocks

get

Retrieve all deploy blocks.

Authorizations
Path parameters
organizationIdintegerrequired

Organization ID

Responses
curl -L \
  --url 'https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/deploy' \
  --header 'x-api-key: YOUR_API_KEY'
{
  "success": true,
  "error": "text",
  "deployBlocks": [
    {
      "id": 1,
      "name": "text",
      "dockerContainer": "text",
      "dockerContainerManagedByEdgeImpulse": true,
      "created": "2025-03-26T13:13:46.635Z",
      "createdByUser": {
        "id": 1,
        "name": "text",
        "username": "text",
        "photo": "text"
      },
      "lastUpdated": "2025-03-26T13:13:46.635Z",
      "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
    }
  ]
}

Last updated

Was this helpful?