POST api/eScheduler/SyncDischarges
Request Information
URI Parameters
None.
Body Parameters
Collection of DischargeSync| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| CleaningStatusID | integer |
None. |
|
| StartedByEmployee | integer |
None. |
|
| FinishedByEmployee | integer |
None. |
|
| StartedTime | date |
None. |
|
| FinishedTime | date |
None. |
|
| ScheduleInstanceID | integer |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"CleaningStatusID": 2,
"StartedByEmployee": 3,
"FinishedByEmployee": 4,
"StartedTime": "2025-12-07T07:52:13.5873303Z",
"FinishedTime": "2025-12-07T07:52:13.5873303Z",
"ScheduleInstanceID": 7
},
{
"ID": 1,
"CleaningStatusID": 2,
"StartedByEmployee": 3,
"FinishedByEmployee": 4,
"StartedTime": "2025-12-07T07:52:13.5873303Z",
"FinishedTime": "2025-12-07T07:52:13.5873303Z",
"ScheduleInstanceID": 7
}
]
application/xml, text/xml
Sample:
<ArrayOfDischargeSync xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aramark.ISIS.Domain.Models.eScheduler">
<DischargeSync>
<CleaningStatusID>2</CleaningStatusID>
<FinishedByEmployee>4</FinishedByEmployee>
<FinishedTime>2025-12-07T07:52:13.5873303+00:00</FinishedTime>
<ID>1</ID>
<ScheduleInstanceID>7</ScheduleInstanceID>
<StartedByEmployee>3</StartedByEmployee>
<StartedTime>2025-12-07T07:52:13.5873303+00:00</StartedTime>
</DischargeSync>
<DischargeSync>
<CleaningStatusID>2</CleaningStatusID>
<FinishedByEmployee>4</FinishedByEmployee>
<FinishedTime>2025-12-07T07:52:13.5873303+00:00</FinishedTime>
<ID>1</ID>
<ScheduleInstanceID>7</ScheduleInstanceID>
<StartedByEmployee>3</StartedByEmployee>
<StartedTime>2025-12-07T07:52:13.5873303+00:00</StartedTime>
</DischargeSync>
</ArrayOfDischargeSync>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>