GET api/GetBedCountByStatusDashboard?jsonData={jsonData}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
jsonData

string

Required

Body Parameters

None.

Response Information

Resource Description

GetBedCountByStatusDashboardVm
NameDescriptionTypeAdditional information
TotalCount

integer

None.

BedCountByStatus

Collection of GetBedCountByStatusVm

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalCount": 1,
  "BedCountByStatus": [
    {
      "BedStatus": "sample string 1",
      "Count": 2
    },
    {
      "BedStatus": "sample string 1",
      "Count": 2
    }
  ]
}

application/xml, text/xml

Sample:
<GetBedCountByStatusDashboardVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Services.PG">
  <BedCountByStatus>
    <GetBedCountByStatusVm>
      <BedStatus>sample string 1</BedStatus>
      <Count>2</Count>
    </GetBedCountByStatusVm>
    <GetBedCountByStatusVm>
      <BedStatus>sample string 1</BedStatus>
      <Count>2</Count>
    </GetBedCountByStatusVm>
  </BedCountByStatus>
  <TotalCount>1</TotalCount>
</GetBedCountByStatusDashboardVm>