Get task comment facts. Run in API Explorer

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

  • engagement string

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

Responses

  • 200 application/json
  • 404 application/json

    Not Found

  • 400 application/json

    Bad Request

  • 500 application/json

    Internal Server Error

GET /api/TaskCommentFacts
curl \
 --request GET 'https://analyticsapi.adra.com/taskmanager/api/TaskCommentFacts' \
 --user "username:password"
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"
  }
]