Get data explorer settings

Get data explorer settings

Get data explorer configuration, like the type of data, and the input / dsp block to use.

GEThttps://studio.edgeimpulse.com/v1/api/{projectId}/raw-data/data-explorer/settings
Path parameters
projectId*integer

Project ID

Response

OK

Body
success*boolean

Whether the operation succeeded

errorstring

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

presetenum

Preset to use for the data explorer.

keywordsimagescurrent-impulsecurrent-impulse-embeddings
dimensionalityReductionTechniqueenum
tsnepca
impulseIdinteger

Which impulse to use (if preset is either 'current-impulse' or 'current-impulse-embeddings'). If this is undefined then 'defaultImpulseId' is used.

dimensionalityReductionRecommendation*enum
tsnepca
Request
const response = await fetch('https://studio.edgeimpulse.com/v1/api/{projectId}/raw-data/data-explorer/settings', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "success": false,
  "error": "text",
  "preset": "keywords",
  "dimensionalityReductionTechnique": "tsne",
  "impulseId": 0,
  "dimensionalityReductionRecommendation": "tsne"
}

Last updated