GET api/BedCleaning/housekeeperstatuses?empID={empID}&campusID={campusID}

Retrieves the cleaning statuses that a Housekeeper may be assigned to

Request Information

URI Parameters

NameDescriptionTypeAdditional information
empID

The ID of the Housekeeper

integer

Required

campusID

The ID of the Campus

integer

Required

Body Parameters

None.

Response Information

Resource Description

A list of CleaningStatus

Collection of CleaningStatus
NameDescriptionTypeAdditional information
ID

integer

None.

Description

string

Required

String length: inclusive between 0 and 30

EnDescription

string

None.

AccountID

integer

None.

UserName

string

None.

LastChanged

date

None.

IsCleaned

boolean

None.

IsCancelled

boolean

None.

IsInProgress

boolean

None.

IsDirty

boolean

None.

IsDelayed

boolean

None.

IsSanitization

boolean

None.

Order

integer

Required

Range: inclusive between 1 and 99

Optional

boolean

None.

HL7Code

string

String length: inclusive between 0 and 1

HL7Send

boolean

None.

Icon

string

None.

ParentID

integer

None.

IsEditable

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "Description": "sample string 2",
    "EnDescription": "samplestring2",
    "AccountID": 3,
    "UserName": "sample string 4",
    "LastChanged": "2024-05-18T04:00:48.6887604Z",
    "IsCleaned": true,
    "IsCancelled": true,
    "IsInProgress": true,
    "IsDirty": true,
    "IsDelayed": true,
    "IsSanitization": true,
    "Order": 11,
    "Optional": true,
    "HL7Code": "sample string 13",
    "HL7Send": true,
    "Icon": "sample string 15",
    "ParentID": 1,
    "IsEditable": true
  },
  {
    "ID": 1,
    "Description": "sample string 2",
    "EnDescription": "samplestring2",
    "AccountID": 3,
    "UserName": "sample string 4",
    "LastChanged": "2024-05-18T04:00:48.6887604Z",
    "IsCleaned": true,
    "IsCancelled": true,
    "IsInProgress": true,
    "IsDirty": true,
    "IsDelayed": true,
    "IsSanitization": true,
    "Order": 11,
    "Optional": true,
    "HL7Code": "sample string 13",
    "HL7Send": true,
    "Icon": "sample string 15",
    "ParentID": 1,
    "IsEditable": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfCleaningStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aramark.ISIS.Domain.Models">
  <CleaningStatus>
    <AccountID>3</AccountID>
    <Description>sample string 2</Description>
    <HL7Code>sample string 13</HL7Code>
    <HL7Send>true</HL7Send>
    <ID>1</ID>
    <Icon>sample string 15</Icon>
    <IsCancelled>true</IsCancelled>
    <IsCleaned>true</IsCleaned>
    <IsDelayed>true</IsDelayed>
    <IsDirty>true</IsDirty>
    <IsEditable>true</IsEditable>
    <IsInProgress>true</IsInProgress>
    <IsSanitization>true</IsSanitization>
    <LastChanged>2024-05-18T04:00:48.6887604+00:00</LastChanged>
    <Optional>true</Optional>
    <Order>11</Order>
    <ParentID>1</ParentID>
    <UserName>sample string 4</UserName>
  </CleaningStatus>
  <CleaningStatus>
    <AccountID>3</AccountID>
    <Description>sample string 2</Description>
    <HL7Code>sample string 13</HL7Code>
    <HL7Send>true</HL7Send>
    <ID>1</ID>
    <Icon>sample string 15</Icon>
    <IsCancelled>true</IsCancelled>
    <IsCleaned>true</IsCleaned>
    <IsDelayed>true</IsDelayed>
    <IsDirty>true</IsDirty>
    <IsEditable>true</IsEditable>
    <IsInProgress>true</IsInProgress>
    <IsSanitization>true</IsSanitization>
    <LastChanged>2024-05-18T04:00:48.6887604+00:00</LastChanged>
    <Optional>true</Optional>
    <Order>11</Order>
    <ParentID>1</ParentID>
    <UserName>sample string 4</UserName>
  </CleaningStatus>
</ArrayOfCleaningStatus>