Get AI Actions proposed changes

Get AI Actions proposed changes

get

Get proposed changes from an AI Actions job.

Authorizations
Path parameters
projectIdintegerRequired

Project ID

jobIdintegerRequired

Job ID

Responses
200
OK
application/json
Responseall of
get
GET /v1/api/{projectId}/raw-data/ai-actions-preview/{jobId}/proposed-changes HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Accept: */*
200

OK

{
  "success": true,
  "error": "text",
  "proposedChanges": [
    {
      "sampleId": 1,
      "step": 1,
      "proposedChanges": {
        "label": "text",
        "isDisabled": true,
        "boundingBoxes": [
          {
            "label": "text",
            "x": 1,
            "y": 1,
            "width": 1,
            "height": 1
          }
        ],
        "metadata": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        },
        "structuredLabels": [
          {
            "startIndex": 1,
            "endIndex": 1,
            "label": "text"
          }
        ]
      }
    }
  ]
}

Last updated

Was this helpful?