GET api/eScheduler/GetHousekeeperStatus?applicationID={applicationID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| applicationID | string |
None. |
Body Parameters
None.
Response Information
Resource Description
HousekeeperStatus| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| EmployeeID | integer |
None. |
|
| UserName | string |
None. |
|
| HousekeeperStatusID | integer |
None. |
|
| isOpen | boolean |
None. |
|
| ParentID | integer |
None. |
|
| Timestamp | date |
None. |
|
| HousekeeperStatusDesc | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"EmployeeID": 2,
"UserName": "sample string 3",
"HousekeeperStatusID": 4,
"isOpen": true,
"ParentID": 1,
"Timestamp": "2025-12-20T16:49:44.3333063Z",
"HousekeeperStatusDesc": "Off Lunch"
}
application/xml, text/xml
Sample:
<HousekeeperStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aramark.ISIS.Domain.Models.eScheduler"> <EmployeeID>2</EmployeeID> <HousekeeperStatusID>4</HousekeeperStatusID> <ID>1</ID> <ParentID>1</ParentID> <Timestamp>2025-12-20T16:49:44.3333063+00:00</Timestamp> <UserName>sample string 3</UserName> <isOpen>true</isOpen> </HousekeeperStatus>