Get dsp block

Get dsp block

get

Gets a dsp block.

Authorizations
Path parameters
organizationIdintegerRequired

Organization ID

dspIdintegerRequired

DSP Block ID, use the impulse functions to retrieve the ID

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

OK

{
  "success": true,
  "error": "text",
  "dspBlock": {
    "id": 1,
    "name": "text",
    "dockerContainer": "text",
    "dockerContainerManagedByEdgeImpulse": true,
    "created": "2025-06-21T06:38:49.842Z",
    "createdByUser": {
      "id": 1,
      "name": "text",
      "username": "text",
      "photo": "text"
    },
    "lastUpdated": "2025-06-21T06:38:49.842Z",
    "lastUpdatedByUser": {
      "id": 1,
      "name": "text",
      "username": "text",
      "photo": "text"
    },
    "userId": 1,
    "userName": "text",
    "description": "text",
    "requestsCpu": 1,
    "requestsMemory": 1,
    "limitsCpu": 1,
    "limitsMemory": 1,
    "port": 1,
    "isConnected": true,
    "error": "text",
    "sourceCodeAvailable": true,
    "sourceCodeDownloadStaffOnly": true
  }
}

Last updated

Was this helpful?