Scene Classification Job
GET/api/v1/assets/:asset_id/addons/scene_classification/jobs/:job_id
Retrieve result after scene classification using job_id.
Response JSON
{
"status": "OK",
"output": {
"data": [
{ "label": "amusement_park", "confidence": 0.637 },
{ "label": "tower", "confidence": 0.430 },
{ "label": "castle", "confidence": 0.297 }
]
}
}
| Key | Value | Description |
|---|---|---|
status | string | Can be "QUEUED", "IN_PROGRESS", "OK", "ERROR" |
output | JSON | An JSON Object containing the result |
Request
Responses
- 200
- 401
- 403
- 500
Successful operation
Unauthorized - Invalid or missing authentication
Forbidden - Insufficient permissions
Internal server error