API to get Data needed to display on the Proxies 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/proxies-panel

This API is used for getting total count of proxy assigned either as an owner or as an proxy. Thus, two numbers are returned, a total count of proxies the user assigned to others, and a total count of of users who assigned the user as a proxy.

Responses

  • 200 application/json

    OK

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