Skip to main content
POST
/
ml
/
models
/
{id}
/
deploy
Deploy model
curl --request POST \
  --url https://acusight.io/api/ml/models/{id}/deploy \
  --header 'Authorization: Bearer <token>'
{
  "data": {},
  "error": {
    "code": "<string>",
    "details": "<string>",
    "message": "<string>"
  },
  "meta": {
    "count": 123,
    "limit": 123,
    "offset": 123,
    "total": 123
  },
  "success": true
}

Authorizations

Authorization
string
header
required

JWT access token. Paste the token only; the Bearer prefix is added automatically.

Path Parameters

id
integer
required

Model version ID

Query Parameters

device_id
integer
required

Device ID to deploy to

label_map
string

Optional label map for inference config (e.g., '0:person,1:car')

Response

Deployment job queued

data
object
error
object
meta
object
success
boolean