Get the teams dimension. Run in API Explorer

GET /api/TeamsDimension

This request should be used to retrieve the teams dimension data for specified engagement(s). This includes team name, team code, description, number of members as well as the number of preparers, approvers and admins. The data contained here will be similar to what can be seen in Task Manager under Administration->Teams.

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/TeamsDimension
curl \
 --request GET 'https://analyticsapi.adra.com/taskmanager/api/TeamsDimension' \
 --user "username:password"
Response examples (200)
[
  {
    "TeamKey": 571,
    "IsActive": 1,
    "TeamCode": "0001A-1",
    "TeamName": "Team 01-update",
    "EngagementKey": "45c31339-96d0-4262-b051-c00f392685c1",
    "TeamDescription": "testgff- updated- firefox",
    "TeamNumberOfAdmins": 0,
    "TeamNumberOfMembers": 7,
    "TeamNumberOfApprovers": 3,
    "TeamNumberOfPreparers": 4
  }
]