POST
/
api
/
{projectId}
/
integrations
/
tensorboard
/
start
Start TensorBoard integration
curl --request POST \
  --url https://studio.edgeimpulse.com/v1/api/{projectId}/integrations/tensorboard/start \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "blockIds": [
    123
  ]
}'
{
  "success": true,
  "error": "<string>",
  "id": "learn-3-2-1"
}

Authorizations

x-api-key
string
header
required

Path Parameters

projectId
integer
required

Project ID

Body

application/json
blockIds
number[]
required

IDs of learn blocks to compare in a TensorBoard session

Response

200 - application/json

OK

success
boolean
required

Whether the operation succeeded

id
string
required

Unique integration resource identifier. Pass this to getIntegrationSessionStatus to check the status of the integration session.

Example:

"learn-3-2-1"

error
string

Optional error description (set if 'success' was false)