GET api/BedCleaning/housekeeperareas?empID={empID}&campusID={campusID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| empID | integer |
Required |
|
| campusID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of HousekeeperArea| Name | Description | Type | Additional information |
|---|---|---|---|
| EmployeeID | integer |
None. |
|
| CleanAreaID | integer |
None. |
|
| Description | string |
None. |
|
| EnDescription | string |
None. |
|
| CoverageType | integer |
None. |
|
| UserName | string |
None. |
|
| LastChanged | date |
None. |
|
| AccountID | integer |
None. |
|
| CoverageTypeDescription | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"EmployeeID": 1,
"CleanAreaID": 2,
"Description": "sample string 3",
"EnDescription": "samplestring3",
"CoverageType": 4,
"UserName": "sample string 5",
"LastChanged": "2025-12-20T16:59:00.8001856Z",
"AccountID": 6,
"CoverageTypeDescription": "sample string 7"
},
{
"EmployeeID": 1,
"CleanAreaID": 2,
"Description": "sample string 3",
"EnDescription": "samplestring3",
"CoverageType": 4,
"UserName": "sample string 5",
"LastChanged": "2025-12-20T16:59:00.8001856Z",
"AccountID": 6,
"CoverageTypeDescription": "sample string 7"
}
]
application/xml, text/xml
Sample:
<ArrayOfHousekeeperArea xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aramark.ISIS.Domain.Models">
<HousekeeperArea>
<AccountID>6</AccountID>
<CleanAreaID>2</CleanAreaID>
<CoverageType>4</CoverageType>
<CoverageTypeDescription>sample string 7</CoverageTypeDescription>
<Description>sample string 3</Description>
<EmployeeID>1</EmployeeID>
<LastChanged>2025-12-20T16:59:00.8001856+00:00</LastChanged>
<UserName>sample string 5</UserName>
</HousekeeperArea>
<HousekeeperArea>
<AccountID>6</AccountID>
<CleanAreaID>2</CleanAreaID>
<CoverageType>4</CoverageType>
<CoverageTypeDescription>sample string 7</CoverageTypeDescription>
<Description>sample string 3</Description>
<EmployeeID>1</EmployeeID>
<LastChanged>2025-12-20T16:59:00.8001856+00:00</LastChanged>
<UserName>sample string 5</UserName>
</HousekeeperArea>
</ArrayOfHousekeeperArea>