Skip to main content
GET
/
ml
/
export
/
jobs
/
{id}
Get export job
curl --request GET \
  --url https://acusight.io/api/ml/export/jobs/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "artifact_uri": "<string>",
    "completed_at": "<string>",
    "config": [
      123
    ],
    "created_at": "<string>",
    "error_message": "<string>",
    "file_size": 123,
    "format": "<string>",
    "id": 123,
    "model_version_id": 123,
    "name": "<string>",
    "output_model_version_id": 123,
    "project_id": 123,
    "started_at": "<string>",
    "status": "<string>",
    "updated_at": "<string>"
  },
  "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

Export job ID

Response

Export job details

data
object
error
object
meta
object
success
boolean