Skip to main content
POST
/
data
/
agent
/
images
/
notify
Notify edge image upload
curl --request POST \
  --url https://acusight.io/api/data/agent/images/notify \
  --header 'Content-Type: application/json' \
  --header 'X-Device-Key: <api-key>' \
  --data '
{
  "device_id": "<string>",
  "filename": "<string>",
  "height": 123,
  "storage_key": "<string>",
  "width": 123,
  "annotations": [
    {
      "class_value": "<string>",
      "confidence": 123,
      "height": 123,
      "width": 123,
      "x_center": 123,
      "y_center": 123
    }
  ],
  "model_id": "<string>",
  "model_name": "<string>",
  "model_version": "<string>"
}
'
{}

Authorizations

X-Device-Key
string
header
required

Device API key for edge agent authentication. Format: adk_

Body

application/json

Image notification payload

device_id
string
required
filename
string
required
height
integer
required
storage_key
string
required
width
integer
required
annotations
object[]
model_id
string

Model that generated annotations

model_name
string

Model name

model_version
string

Model version

Response

Upload acknowledged with image and batch identifiers

The response is of type object.