Get task comment facts.

GET /api/TaskCommentFacts

This request should be used to retrieve information around comments on tasks for specified engagement(s). This includes information around what comment was added, by whom and when it was added as well as a key to connect it to the TaskFacts dimension.

Query parameters

  • Short Guid of desired engagement Ex - ESXmkya-nEeWMX-7_3fSxA or Guid of desired engagement Ex - 45c31339-96d0-4262-b051-c00f392685c1

Responses

GET /api/TaskCommentFacts
curl \
 -X GET https://analyticsapi.adra.com/taskmanager/api/TaskCommentFacts
Response examples (200)
[
  {
    "TaskKey": 3535763,
    "CommentKey": 1610,
    "CommentText": "Test",
    "TaskListKey": 28637,
    "CommentAdded": "2020-04-23T06:19:26.6569875Z",
    "EngagementKey": "45c31339-96d0-4262-b051-c00f392685c1",
    "CommentAddedByName": "Example User",
    "CommentAddedByUsername": "exampleuser@example.com"
  }
]