GET
/
api
/
organizations
/
{organizationId}
/
dsp
/
{dspId}
Get dsp block
curl --request GET \
  --url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/dsp/{dspId} \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "error": "<string>",
  "dspBlock": {
    "id": 123,
    "name": "<string>",
    "dockerContainer": "<string>",
    "dockerContainerManagedByEdgeImpulse": true,
    "created": "2023-11-07T05:31:56Z",
    "createdByUser": {
      "id": 123,
      "name": "<string>",
      "username": "<string>",
      "photo": "<string>"
    },
    "lastUpdated": "2023-11-07T05:31:56Z",
    "lastUpdatedByUser": {
      "id": 123,
      "name": "<string>",
      "username": "<string>",
      "photo": "<string>"
    },
    "userId": 123,
    "userName": "<string>",
    "description": "<string>",
    "requestsCpu": 123,
    "requestsMemory": 123,
    "limitsCpu": 123,
    "limitsMemory": 123,
    "port": 123,
    "isConnected": true,
    "error": "<string>",
    "sourceCodeAvailable": true,
    "sourceCodeDownloadStaffOnly": true
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

organizationId
integer
required

Organization ID

dspId
integer
required

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

Response

200 - application/json

OK

The response is of type object.