API to get Data needed to display on the Overdue Panel

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

This API is used for getting the total count of late action plans for the user to display on the Overdue Panel. Two numbers are returned, a total count of late Close Tasks and a total count of late Close Issues.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • overdueTaskCount integer(int32)
    • overdueIssueCount integer(int32)
GET /cs-close-api/dashboard/overdue-panel
curl \
 --request GET 'https://customer.trintech.com/cs-close-api/dashboard/overdue-panel'
Response examples (200)
{
  "overdueTaskCount": 42,
  "overdueIssueCount": 42
}