Adds a new comment to the specified task

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
POST /tasks/{id}/comments

Adds a new comment to the specified task. Comments cannot be blank and must be 4000 characters or less.

Path parameters

  • id integer Required
application/json

Body Required

  • message string Required

    Add new comment message for the task. Comments can not be null.

    Minimum length is 0, maximum length is 4000.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id integer
    • message string
    • commentDate string(date-time)
    • userFullName string
POST /tasks/{id}/comments
curl \
 --request POST 'https://usaapi02.cadencyservices.trintech.com/test/api/tasks/{id}/comments' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"message":"string"}'
Request examples
{
  "message": "string"
}
Response examples (200)
{
  "id": 42,
  "message": "string",
  "commentDate": "2026-05-04T09:42:00Z",
  "userFullName": "string"
}