Image Graphics Job
GET/api/v1/assets/addons/image_graphics/jobs/:job_id
Use the Job API to retrieve the status and URL of the processed output image after Image Graphics processing.
Response JSON
{
"status": "OK",
"output": [{
"name": "image-graphics",
"asset_id": "NEW_ASSET_ID"
}],
"error": [{
"name": "",
"asset_id": "ASSET_ID",
"error": "Error Message"
}]
}
| Key | Value | Description |
|---|---|---|
status | string | Can be "QUEUED", "OK" or "ERROR" |
output | JSON | An array containing assets created or updated. name is the conversion_name of the output as provided in disposition, asset_id is the new or updated asset ID. |
error | JSON | An array containing errors that occurred during transformation. |
Request
Responses
- 200
- 401
- 403
- 500
Successful operation
Unauthorized - Invalid or missing authentication
Forbidden - Insufficient permissions
Internal server error