GET api/Dashboard/GetProjectDetails?startDate={startDate}&endDate={endDate}&userId={userId}&projectId={projectId}&accountTypeId={accountTypeId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| startDate | date |
Required |
|
| endDate | date |
Required |
|
| userId | string |
Required |
|
| projectId | string |
Required |
|
| accountTypeId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ProjectDetailsVm| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Name | string |
None. |
|
| EstimatedStartDate | date |
None. |
|
| EstimatedEndDate | date |
None. |
|
| WorkHours | string |
None. |
|
| NonWorkHours | string |
None. |
|
| OverTime | string |
None. |
|
| AccountType | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Name": "sample string 2",
"EstimatedStartDate": "2025-12-17T14:50:10.3897491+01:00",
"EstimatedEndDate": "2025-12-17T14:50:10.3897491+01:00",
"WorkHours": "sample string 3",
"NonWorkHours": "sample string 4",
"OverTime": "sample string 5",
"AccountType": "sample string 6"
},
{
"Id": 1,
"Name": "sample string 2",
"EstimatedStartDate": "2025-12-17T14:50:10.3897491+01:00",
"EstimatedEndDate": "2025-12-17T14:50:10.3897491+01:00",
"WorkHours": "sample string 3",
"NonWorkHours": "sample string 4",
"OverTime": "sample string 5",
"AccountType": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfProjectDetailsVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Nokon.Nappen.Core.ViewModels">
<ProjectDetailsVm>
<AccountType>sample string 6</AccountType>
<EstimatedEndDate xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:DateTime>2025-12-17T13:50:10.3897491Z</d3p1:DateTime>
<d3p1:OffsetMinutes>60</d3p1:OffsetMinutes>
</EstimatedEndDate>
<EstimatedStartDate xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:DateTime>2025-12-17T13:50:10.3897491Z</d3p1:DateTime>
<d3p1:OffsetMinutes>60</d3p1:OffsetMinutes>
</EstimatedStartDate>
<Id>1</Id>
<Name>sample string 2</Name>
<NonWorkHours>sample string 4</NonWorkHours>
<OverTime>sample string 5</OverTime>
<WorkHours>sample string 3</WorkHours>
</ProjectDetailsVm>
<ProjectDetailsVm>
<AccountType>sample string 6</AccountType>
<EstimatedEndDate xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:DateTime>2025-12-17T13:50:10.3897491Z</d3p1:DateTime>
<d3p1:OffsetMinutes>60</d3p1:OffsetMinutes>
</EstimatedEndDate>
<EstimatedStartDate xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:DateTime>2025-12-17T13:50:10.3897491Z</d3p1:DateTime>
<d3p1:OffsetMinutes>60</d3p1:OffsetMinutes>
</EstimatedStartDate>
<Id>1</Id>
<Name>sample string 2</Name>
<NonWorkHours>sample string 4</NonWorkHours>
<OverTime>sample string 5</OverTime>
<WorkHours>sample string 3</WorkHours>
</ProjectDetailsVm>
</ArrayOfProjectDetailsVm>