API to get Data needed to display on the Queues Panel

GET /cs-close-api/dashboard/queues-panel

This API is used for getting the six oldest action plans for the user to display on the Queues Panel. This GET grabs only from Close Task type action plans, and the difference between this panel and the Action Plan Panel is that the action plans displayed on this panel are not assigned to the user directly but the user indirectly via a group scenario called queue.

Responses

GET /cs-close-api/dashboard/queues-panel
curl \
 --request GET 'http://close-service:8082/cs-close-api/dashboard/queues-panel'
Response examples (200)
{
  "taskList": [
    {
      "actionPlanId": 42,
      "name": "string",
      "dueDate": "2025-05-04T09:42:00Z"
    }
  ],
  "issueList": [
    {
      "actionPlanId": 42,
      "name": "string",
      "status": "string",
      "inboxUserAndEmail": "string"
    }
  ]
}