Get the task check list item dimension.

GET /api/TaskCheckListItemDimension

This request should be used to retrieve information around check list items on tasks for specified engagement(s). This includes information around whether an item is checked, the item text, who has modified the item, when it was last modified and 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/TaskCheckListItemDimension
curl \
 -X GET https://analyticsapi.adra.com/taskmanager/api/TaskCheckListItemDimension
Response examples (200)
[
  {
    "Index": 1,
    "Checked": true,
    "ItemText": "Chceklist",
    "ModifiedDate": "2020-04-23T06:14:27.3269853Z",
    "EngagementKey": "45c31339-96d0-4262-b051-c00f392685c1",
    "ModifiedByName": "Example User",
    "ModifiedByUserName": "exampleuser@example.com",
    "TaskCheckListItemKey": 139669,
    "TaskCheckListItemFactKey": 3535762
  }
]