Get job detail
GET/job/:id
Retrieve details of a specific job by its ID.
Request
Path Parameters
Responses
- 200
- 401
- 403
- 404
- 500
The job details.
- application/json
- Schema
- Example (from schema)
Schema
Unique identifier of the job.
Current status of the job.
Creation timestamp.
operation
object
The operation data.
The operation data.
The result data if completed.
Error message if failed.
Worker hostname that processed the job.
Last update timestamp.
{
"id": "string",
"status": "string",
"created": "string",
"operation": {},
"error": "string",
"hostname": "string",
"updated_at": "string"
}
Unauthorized - API key required
- application/json
- Schema
- Example (from schema)
Schema
A description of the error that occurred.
Additional details about the error.
The error code.
{
"error": "Failed to retrieve status.",
"details": "Failed due to network timeout.",
"code": 500
}
Forbidden - Insufficient permissions
- application/json
- Schema
- Example (from schema)
Schema
A description of the error that occurred.
Additional details about the error.
The error code.
{
"error": "Failed to retrieve status.",
"details": "Failed due to network timeout.",
"code": 500
}
Job not found.
- application/json
- Schema
- Example (from schema)
Schema
A description of the error that occurred.
Additional details about the error.
The error code.
{
"error": "Failed to retrieve status.",
"details": "Failed due to network timeout.",
"code": 500
}
Error retrieving job.
- application/json
- Schema
- Example (from schema)
Schema
A description of the error that occurred.
Additional details about the error.
The error code.
{
"error": "Failed to retrieve status.",
"details": "Failed due to network timeout.",
"code": 500
}