Create

POST /action-plan/{taskId}/comments

Path parameters

  • taskId integer Required
application/json

Body Required

  • text string

Responses

  • 200 */*

    OK

    Hide response attributes Show response attributes object
    • id integer
    • logId integer
    • userId string
    • userType string
    • date string(date-time)
    • slotIndex integer(int32)
    • text string
POST /action-plan/{taskId}/comments
curl \
 --request POST 'https://customer.trintech.com/action-plan/{taskId}/comments' \
 --header "Content-Type: application/json" \
 --data '{"text":"string"}'
Request examples
{
  "text": "string"
}
Response examples (200)
{
  "id": 42,
  "logId": 42,
  "userId": "string",
  "userType": "string",
  "date": "2025-05-04T09:42:00Z",
  "slotIndex": 42,
  "text": "string"
}