GET api/Project/dailysetup?employeeID={employeeID}&taskId={taskId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
employeeID

integer

Required

taskId

integer

Required

Body Parameters

None.

Response Information

Resource Description

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.

Response Formats

application/json, text/json

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

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-18T06:42:48.0013881+00:00</CleanupCompletedDateTime>
  <CleanupStartedBy>1</CleanupStartedBy>
  <CleanupStartedDateTime>2024-05-18T06:42:48.0013881+00:00</CleanupStartedDateTime>
  <ID>1</ID>
  <LastChanged>2024-05-18T06:42:48.0013881+00:00</LastChanged>
  <ProjectTaskID>2</ProjectTaskID>
  <SetupCompletedDateTime>2024-05-18T06:42:48.0013881+00:00</SetupCompletedDateTime>
  <SetupStartedBy>3</SetupStartedBy>
  <SetupStartedDateTime>2024-05-18T06:42:48.0013881+00:00</SetupStartedDateTime>
  <UserName>sample string 4</UserName>
</DailySetupProgress>