GET /queue/{guid}
Get a specific queue job by its GUID
/queue/{guid}
GET
Get a specific queue job by its GUID
Key | Type | Example | |
---|---|---|---|
:guid required | string |
"example-guid"
|
Key | Type | Example | |
---|---|---|---|
authorization required | string |
"Bearer your-jwt-token"
|
{
"_meta": {
"guid": "example-string",
"entity": "example-value",
"created": "example-value",
"modified": "example-value",
"updated": "example-value"
},
"status": "pending",
"priority": "example-value",
"type": "example-string",
"data": {},
"attempts": 0,
"max_attempts": 3,
"scheduled_for": "example-value",
"started_at": "example-value",
"completed_at": "example-value",
"error": "example-string",
"progress": {
"current": "example-value",
"total": "example-value",
"percentage": 123
},
"worker_id": "example-string",
"tags": [
"example-string"
]
}
{
"success": false,
"error": "ERROR_KEY"
}
Error Code | Description |
---|---|
HTTP_404 | Queue job not found |
permission | description |
---|---|
BearerAuth |
JWT access token obtained from login endpoint required |
Back to Queue Return to the Queue category to view other endpoints All API Categories Browse all available API categories