GET api/Project/dailysetup?employeeID={employeeID}&taskId={taskId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| employeeID | integer |
Required |
|
| taskId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
DailySetupProgress| Name | Description | Type | Additional 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": "2025-12-20T16:56:34.136714Z",
"SetupCompletedDateTime": "2025-12-20T16:56:34.136714Z",
"CleanupStartedBy": 1,
"CleanupStartedDateTime": "2025-12-20T16:56:34.136714Z",
"CleanupCompletedDateTime": "2025-12-20T16:56:34.136714Z",
"UserName": "sample string 4",
"LastChanged": "2025-12-20T16:56:34.136714Z"
}
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>2025-12-20T16:56:34.136714+00:00</CleanupCompletedDateTime> <CleanupStartedBy>1</CleanupStartedBy> <CleanupStartedDateTime>2025-12-20T16:56:34.136714+00:00</CleanupStartedDateTime> <ID>1</ID> <LastChanged>2025-12-20T16:56:34.136714+00:00</LastChanged> <ProjectTaskID>2</ProjectTaskID> <SetupCompletedDateTime>2025-12-20T16:56:34.136714+00:00</SetupCompletedDateTime> <SetupStartedBy>3</SetupStartedBy> <SetupStartedDateTime>2025-12-20T16:56:34.136714+00:00</SetupStartedDateTime> <UserName>sample string 4</UserName> </DailySetupProgress>