POST
/
api
/
{projectId}
/
verify-dsp-block
/
url
Verify custom DSP block
curl --request POST \
  --url https://studio.edgeimpulse.com/v1/api/{projectId}/verify-dsp-block/url \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "url": "<string>"
}'
{
  "success": true,
  "error": "<string>",
  "block": {
    "title": "<string>",
    "author": "<string>",
    "description": "<string>",
    "name": "<string>",
    "latestImplementationVersion": 123,
    "namedAxes": [
      {
        "name": "<string>",
        "description": "<string>",
        "required": true
      }
    ]
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

projectId
integer
required

Project ID

Body

application/json

Response

200 - application/json

OK

The response is of type object.