GET api/WorkOrderQueue/Dashboard

Request Information

URI Parameters

None.

Body Parameters

None

Response Information

Resource Description

Collection of LandingPageItemViewModel
NameDescriptionTypeAdditional information
WorkGroupName

string None.
WorkGroupDescription

string None.
IsSpecial

boolean None.
IsPrimary

boolean None.
Count

integer None.
IsPublished

boolean None.
IsValidSchedule

boolean None.

Response Formats

application/json, text/json

Sample:
[
  {
    "workGroupName": "sample string 1",
    "workGroupDescription": "sample string 2",
    "isSpecial": true,
    "isPrimary": true,
    "count": 5,
    "isPublished": true,
    "isValidSchedule": true
  },
  {
    "workGroupName": "sample string 1",
    "workGroupDescription": "sample string 2",
    "isSpecial": true,
    "isPrimary": true,
    "count": 5,
    "isPublished": true,
    "isValidSchedule": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfLandingPageItemViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/fmPilot.API.Internal.Areas.WorkOrderQueue.Models">
  <LandingPageItemViewModel>
    <Count>5</Count>
    <IsPrimary>true</IsPrimary>
    <IsPublished>true</IsPublished>
    <IsSpecial>true</IsSpecial>
    <IsValidSchedule>true</IsValidSchedule>
    <WorkGroupDescription>sample string 2</WorkGroupDescription>
    <WorkGroupName>sample string 1</WorkGroupName>
  </LandingPageItemViewModel>
  <LandingPageItemViewModel>
    <Count>5</Count>
    <IsPrimary>true</IsPrimary>
    <IsPublished>true</IsPublished>
    <IsSpecial>true</IsSpecial>
    <IsValidSchedule>true</IsValidSchedule>
    <WorkGroupDescription>sample string 2</WorkGroupDescription>
    <WorkGroupName>sample string 1</WorkGroupName>
  </LandingPageItemViewModel>
</ArrayOfLandingPageItemViewModel>