Retrieve data on all available queues
- Zuletzt aktualisiert2022/11/09
Retrieve data on all available queues
Send a post request from the workload management API to retrieve all queues for your Control Room.
Prerequisites
- AAE_Queue Admin role
- You need a user account with the AAE_Queue Admin role to query and manage workload queues and work items in an Control Room.
- JSON Web Token (JWT)
- All Control Room APIs require a JSON Web Token (JWT) to access the APIs. Generate an authentication token using the Enterprise 11 Authentication API.
- URL:
http://<your_control_room_url>/v2/wlm/queues/list
- Method: POST
Note:
- Use the Swagger definition files installed with your Control Room to test the APIs. View the available Swagger APIs at
http://<your_control_room_url>/swagger/
. - You can also use a REST client to complete this task.
Procedure
Note: You can also run REST requests from a command terminal. Here is a Curl example of the
request. This example is formatted for readability. Replace text inside the angel
brackets, <text>, with the appropriate
values.
curl -X POST "http://<your_control_room_url>/v2/wlm/queues/list"
-H "accept: application/json"
-H "X-Authorization: <authentication_token>"
-H "Content-Type: application/json" -d "{}"