Skip to main content
PATCH
/
ml
/
training
/
jobs
/
{id}
/
progress
Update training progress
curl --request PATCH \
  --url https://acusight.io/api/ml/training/jobs/{id}/progress \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "error_message": "<string>",
  "error_type": "<string>",
  "latest_checkpoint_uri": "<string>",
  "progress": 123,
  "status": "<string>"
}
'
{
  "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

Training job ID

Body

application/json

Progress update payload

error_message
string
error_type
string
latest_checkpoint_uri
string
progress
number
status
string

Response

Progress updated

data
object
error
object
meta
object
success
boolean