POST api/Project/dailysetup

Request Information

URI Parameters

None.

Body Parameters

DailySetupProgress
NameDescriptionTypeAdditional information
ID

integer

None.

ProjectTaskID

integer

None.

SetupStartedBy

integer

None.

SetupStartedDateTime

date

None.

SetupCompletedDateTime

date

None.

CleanupStartedBy

integer

None.

CleanupStartedDateTime

date

None.

CleanupCompletedDateTime

date

None.

UserName

string

None.

LastChanged

date

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "ProjectTaskID": 2,
  "SetupStartedBy": 3,
  "SetupStartedDateTime": "2024-05-18T05:31:14.545378Z",
  "SetupCompletedDateTime": "2024-05-18T05:31:14.545378Z",
  "CleanupStartedBy": 1,
  "CleanupStartedDateTime": "2024-05-18T05:31:14.545378Z",
  "CleanupCompletedDateTime": "2024-05-18T05:31:14.545378Z",
  "UserName": "sample string 4",
  "LastChanged": "2024-05-18T05:31:14.545378Z"
}

application/xml, text/xml

Sample:
<DailySetupProgress xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aramark.ISIS.Domain.Models">
  <CleanupCompletedDateTime>2024-05-18T05:31:14.545378+00:00</CleanupCompletedDateTime>
  <CleanupStartedBy>1</CleanupStartedBy>
  <CleanupStartedDateTime>2024-05-18T05:31:14.545378+00:00</CleanupStartedDateTime>
  <ID>1</ID>
  <LastChanged>2024-05-18T05:31:14.545378+00:00</LastChanged>
  <ProjectTaskID>2</ProjectTaskID>
  <SetupCompletedDateTime>2024-05-18T05:31:14.545378+00:00</SetupCompletedDateTime>
  <SetupStartedBy>3</SetupStartedBy>
  <SetupStartedDateTime>2024-05-18T05:31:14.545378+00:00</SetupStartedDateTime>
  <UserName>sample string 4</UserName>
</DailySetupProgress>

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 'DailySetupProgress'.

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>