Enable multiple samples

Enable multiple samples

Enables samples, ensuring that they are not excluded from the dataset.

POSThttps://studio.edgeimpulse.com/v1/api/{projectId}/raw-data/batch/enable-samples
Path parameters
projectId*integer

Project ID

Query parameters
Response

OK

Body
success*boolean

Whether the operation succeeded

errorstring

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

Request
const response = await fetch('https://studio.edgeimpulse.com/v1/api/{projectId}/raw-data/batch/enable-samples?category=training', {
    method: 'POST',
    headers: {},
});
const data = await response.json();
Response
{
  "success": false,
  "error": "text"
}

Last updated