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
}
]
}
}
Verify the validity of a 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
}
]
}
}
Project ID
OK
The response is of type object
.