get_work_queue
Retrieve work queue details by ID to monitor workflow execution status and manage task processing in Prefect's automation platform.
Instructions
Get details of a specific work queue by ID.
Args: work_queue_id: The work queue UUID
Returns: Work queue details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
work_queue_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"work_queue_id": {
"title": "Work Queue Id",
"type": "string"
}
},
"required": [
"work_queue_id"
],
"type": "object"
}