Get the task check list item dimension. Run in API Explorer

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

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