Get dsp block

Get dsp block

Gets a dsp block.

get

/api/organizations/{organizationId}/dsp/{dspId}

Authorizations
Path parameters
organizationIdintegerrequired

Organization ID

dspIdintegerrequired

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

Responses
curl -L \
  --url 'https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/dsp/{dspId}' \
  --header 'x-api-key: YOUR_API_KEY'
{
  "success": true,
  "error": "text",
  "dspBlock": {
    "id": 1,
    "name": "text",
    "dockerContainer": "text",
    "dockerContainerManagedByEdgeImpulse": true,
    "created": "2025-02-21T17:19:23.549Z",
    "createdByUser": {
      "id": 1,
      "name": "text",
      "username": "text",
      "photo": "text"
    },
    "lastUpdated": "2025-02-21T17:19:23.549Z",
    "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
  }
}

Last updated

Was this helpful?