{ "opencollection": "1.0.0", "info": { "name": "Automation Anywhere API Task Execution AccessDetails Queues API", "version": "2019" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Queues", "type": "folder" }, "items": [ { "info": { "name": "Get a queue by ID", "type": "http" }, "http": { "method": "GET", "url": "https://{controlRoomUrl}/orchestrator/v1/hotbot/queues/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Unique numeric identifier of the queue" } ] }, "docs": "Retrieves detailed information about a specific work item queue, including its configuration, associated work item model, processing order, and current status." }, { "info": { "name": "Add a queue consumer", "type": "http" }, "http": { "method": "POST", "url": "https://{controlRoomUrl}/orchestrator/v1/hotbot/queues/:id/consumers", "params": [ { "name": "id", "value": "", "type": "path", "description": "Unique numeric identifier of the queue" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Adds a role as a consumer of the specified queue. Consumer roles are assigned to bots that will process work items from the queue. Only users with queue management permissions can add consumers." }, { "info": { "name": "Add or update a queue member", "type": "http" }, "http": { "method": "PUT", "url": "https://{controlRoomUrl}/orchestrator/v1/hotbot/queues/:id/members/:userId", "params": [ { "name": "id", "value": "", "type": "path", "description": "Unique numeric identifier of the queue" }, { "name": "userId", "value": "", "type": "path", "description": "Unique numeric identifier of the user" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Adds a user as a member of the specified queue or updates the existing membership configuration. Queue members are human users who can manage queue operations such as reviewing failed items." }, { "info": { "name": "Add a queue participant", "type": "http" }, "http": { "method": "POST", "url": "https://{controlRoomUrl}/orchestrator/v1/hotbot/queues/:id/participants", "params": [ { "name": "id", "value": "", "type": "path", "description": "Unique numeric identifier of the queue" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Adds a participant to the specified queue. Participants can view queue status and work item data but have limited management permissions compared to queue owners or members." } ] } ], "bundled": true }