API to get Data needed to display on the Upcoming Panel

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://developer.trintech.com/doc/cadency-close-task-action-plan-api/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Cadency Close Task Action Plan API MCP server": {
  "url": "https://developer.trintech.com/doc/cadency-close-task-action-plan-api/mcp"
}
Close
GET /dashboard/upcoming-panel

This API is used for getting the total count of late action plans for the user to display on the Upcoming Panel. Two numbers are returned, a total count of Close Tasks action plans where it is currently assigned to a performer but has the user or a group the user belonged to assigned as a reviewer, and a total count of Close Tasks action plans where it is currently assigned to a performer or a reviewer but has the user or a group the user belonged to assigned as an approver.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • upcomingReviewerRoleCount integer(int32)
    • upcomingApproverRoleCount integer(int32)
GET /dashboard/upcoming-panel
curl \
 --request GET 'https://usaapi02.cadencyservices.trintech.com/test/api/dashboard/upcoming-panel' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "upcomingReviewerRoleCount": 42,
  "upcomingApproverRoleCount": 42
}