POST api/eScheduler/UpdateScheduleTaskStatus
Request Information
URI Parameters
None.
Body Parameters
UpdateScheduleTaskEventRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ScheduleTaskID | integer |
None. |
|
| ScheduleTaskStatusCode | string |
None. |
|
| Duration | integer |
None. |
|
| CampusID | integer |
None. |
|
| EarlyCompletionReasonID | integer |
None. |
|
| Timestamp | date |
None. |
|
| Notes | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ScheduleTaskID": 1,
"ScheduleTaskStatusCode": "sample string 2",
"Duration": 3,
"CampusID": 4,
"EarlyCompletionReasonID": 5,
"Timestamp": "2025-11-04T03:49:46.6183901Z",
"Notes": "sample string 7"
}
application/xml, text/xml
Sample:
<UpdateScheduleTaskEventRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aramark.ISIS.Domain.Models.eScheduler.Mobile"> <CampusID>4</CampusID> <Duration>3</Duration> <EarlyCompletionReasonID>5</EarlyCompletionReasonID> <Notes>sample string 7</Notes> <ScheduleTaskID>1</ScheduleTaskID> <ScheduleTaskStatusCode>sample string 2</ScheduleTaskStatusCode> <Timestamp>2025-11-04T03:49:46.6183901+00:00</Timestamp> </UpdateScheduleTaskEventRequest>
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>