GET api/WorkOrderQueue/WorkGroupDashboard

Request Information

URI Parameters

NameDescriptionTypeAdditional information
RequireTotalCount

boolean None.
RequireGroupCount

boolean None.
IsCountQuery

boolean None.
Skip

integer None.
Take

integer None.
Sort

Collection of SortingInfo None.
Group

Collection of GroupingInfo None.
Filter

Collection of Object None.
TotalSummary

Collection of SummaryInfo None.
GroupSummary

Collection of SummaryInfo None.
Select

Collection of string None.
RemoteGrouping

boolean None.
PrimaryKey

Collection of string None.
DefaultSort

string None.

Body Parameters

None

Response Information

Resource Description

ListResultOfWorkGroupDashboardViewModel
NameDescriptionTypeAdditional information
TotalCount

integer None.
Data

Collection of WorkGroupDashboardViewModel None.

Response Formats

application/json, text/json

Sample:
{
  "totalCount": 1,
  "data": [
    {
      "id": 1,
      "name": "sample string 2",
      "description": "sample string 3",
      "health": 4.0,
      "totalWorkOrders": 5,
      "primaryUsers": 6,
      "threshold": 7,
      "timeToZero": "00.00:00:00",
      "timeToGreen": "24+",
      "averageTimeOnWorkOrder": 8,
      "assistantUsers": 9
    },
    {
      "id": 1,
      "name": "sample string 2",
      "description": "sample string 3",
      "health": 4.0,
      "totalWorkOrders": 5,
      "primaryUsers": 6,
      "threshold": 7,
      "timeToZero": "00.00:00:00",
      "timeToGreen": "24+",
      "averageTimeOnWorkOrder": 8,
      "assistantUsers": 9
    }
  ]
}

application/xml, text/xml

Sample:
<ListResultOfWorkGroupDashboardViewModelOunioVRd xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/fmPilot.API.Internal.Models">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/fmPilot.API.Internal.Areas.WorkOrderQueue.Models">
    <d2p1:WorkGroupDashboardViewModel>
      <d2p1:AssistantUsers>9</d2p1:AssistantUsers>
      <d2p1:AverageTimeOnWorkOrder>8</d2p1:AverageTimeOnWorkOrder>
      <d2p1:Description>sample string 3</d2p1:Description>
      <d2p1:Health>4</d2p1:Health>
      <d2p1:Id>1</d2p1:Id>
      <d2p1:Name>sample string 2</d2p1:Name>
      <d2p1:PrimaryUsers>6</d2p1:PrimaryUsers>
      <d2p1:Threshold>7</d2p1:Threshold>
      <d2p1:TotalWorkOrders>5</d2p1:TotalWorkOrders>
    </d2p1:WorkGroupDashboardViewModel>
    <d2p1:WorkGroupDashboardViewModel>
      <d2p1:AssistantUsers>9</d2p1:AssistantUsers>
      <d2p1:AverageTimeOnWorkOrder>8</d2p1:AverageTimeOnWorkOrder>
      <d2p1:Description>sample string 3</d2p1:Description>
      <d2p1:Health>4</d2p1:Health>
      <d2p1:Id>1</d2p1:Id>
      <d2p1:Name>sample string 2</d2p1:Name>
      <d2p1:PrimaryUsers>6</d2p1:PrimaryUsers>
      <d2p1:Threshold>7</d2p1:Threshold>
      <d2p1:TotalWorkOrders>5</d2p1:TotalWorkOrders>
    </d2p1:WorkGroupDashboardViewModel>
  </Data>
  <TotalCount>1</TotalCount>
</ListResultOfWorkGroupDashboardViewModelOunioVRd>