POST api/Project/delaydailyscheduletask

Request Information

URI Parameters

None.

Body Parameters

DailyScheduleTaskDelay
NameDescriptionTypeAdditional information
ID

integer

None.

DailyScheduleTaskID

integer

None.

DelayID

integer

None.

StartTime

date

None.

EndTime

date

None.

UserName

string

None.

DelayStartedBy

integer

None.

DelayCompletedBy

integer

None.

LastChanged

date

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "DailyScheduleTaskID": 2,
  "DelayID": 3,
  "StartTime": "2024-05-18T04:23:27.7333162Z",
  "EndTime": "2024-05-18T04:23:27.7333162Z",
  "UserName": "sample string 5",
  "DelayStartedBy": 1,
  "DelayCompletedBy": 1,
  "LastChanged": "2024-05-18T04:23:27.7333162Z"
}

application/xml, text/xml

Sample:
<DailyScheduleTaskDelay xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aramark.ISIS.Domain.Models">
  <DailyScheduleTaskID>2</DailyScheduleTaskID>
  <DelayCompletedBy>1</DelayCompletedBy>
  <DelayID>3</DelayID>
  <DelayStartedBy>1</DelayStartedBy>
  <EndTime>2024-05-18T04:23:27.7333162+00:00</EndTime>
  <ID>1</ID>
  <LastChanged>2024-05-18T04:23:27.7333162+00:00</LastChanged>
  <StartTime>2024-05-18T04:23:27.7333162+00:00</StartTime>
  <UserName>sample string 5</UserName>
</DailyScheduleTaskDelay>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'DailyScheduleTaskDelay'.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>