Export data as WAV

Export data as WAV

post

Export all the data in the project in WAV format. Updates are streamed over the websocket API.

Authorizations
Path parameters
projectIdintegerrequired

Project ID

Body
retainCropsbooleanrequired

Whether to retain crops and splits. If this is disabled, then the original files are returned (as they were uploaded).

Responses
curl -L \
  --request POST \
  --url 'https://studio.edgeimpulse.com/v1/api/{projectId}/jobs/export/wav' \
  --header 'x-api-key: YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
    "retainCrops": true
  }'
{
  "success": true,
  "error": "text",
  "id": 12873488112
}

Last updated

Was this helpful?