Skip to main content
POST
/
api
/
{projectId}
/
jobs
/
autotune-dsp
Autotune DSP parameters
curl --request POST \
  --url https://studio.edgeimpulse.com/v1/api/{projectId}/jobs/autotune-dsp \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "dspId": 123,
  "config": {}
}
'
{
  "success": true,
  "id": 12873488112,
  "error": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.edgeimpulse.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Path Parameters

projectId
integer
required

Project ID

Body

application/json
dspId
integer
required

DSP block ID to autotune parameters of

config
object

Optional updated DSP block config. If undefined, the current saved block config will be used. This enables experimenting with the autotuner using temporary config options, without updating the stored DSP block config.

Response

200 - application/json

OK

success
boolean
required

Whether the operation succeeded

id
integer
required

Job identifier. Status updates will include this identifier.

Example:

12873488112

error
string

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