Get impulse migration logs

Get impulse migration logs

get

Get the logs for the multi-impulse migration job in this project. This is a separate route so public projects can access it. If no multi-impulse migration jobs are present, an error will be thrown.

Authorizations
Path parameters
projectIdintegerRequired

Project ID

Query parameters
limitintegerOptional

Maximum number of results

logLevelstring · enumOptional

Log level (error, warn, info, debug)

Possible values:
Responses
200
OK
application/json
Responseall of
get
GET /v1/api/{projectId}/jobs/impulse-migration/stdout HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Accept: */*
200

OK

{
  "success": true,
  "error": "text",
  "stdout": [
    {
      "created": "2025-06-30T21:39:10.664Z",
      "data": "text",
      "logLevel": "error"
    }
  ],
  "totalCount": 1
}

Last updated

Was this helpful?