GET api/report/sprintWorkloadSummary?projectId={projectId}&sprintId={sprintId}
Sprint workload summary
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| projectId | integer |
Required |
|
| sprintId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Sprint workload summary
API_Data_IEnumerableOfSprintWorkSummary| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Error | ErrorInfo |
None. |
|
| Data | Collection of SprintWorkSummary |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Error": {
"ErrorCode": 1,
"ErrorMessage": "sample string 1"
},
"Data": [
{
"PersonId": 1,
"PersonName": "sample string 2",
"Attendance": "0.0d",
"TimeSpent": "0.0d",
"TimeRemain": "0.0d",
"CompletedTaskCount": 3,
"TimeSpentInt": 4,
"TimeRemainInt": 5,
"AttendanceInt": 6
},
{
"PersonId": 1,
"PersonName": "sample string 2",
"Attendance": "0.0d",
"TimeSpent": "0.0d",
"TimeRemain": "0.0d",
"CompletedTaskCount": 3,
"TimeSpentInt": 4,
"TimeRemainInt": 5,
"AttendanceInt": 6
}
]
}
application/xml, text/xml
Sample:
<API_Data_ArrayOfSprintWorkSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Common">
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Report">
<d2p1:SprintWorkSummary>
<d2p1:AttendanceInt>6</d2p1:AttendanceInt>
<d2p1:CompletedTaskCount>3</d2p1:CompletedTaskCount>
<d2p1:PersonId>1</d2p1:PersonId>
<d2p1:PersonName>sample string 2</d2p1:PersonName>
<d2p1:TimeRemainInt>5</d2p1:TimeRemainInt>
<d2p1:TimeSpentInt>4</d2p1:TimeSpentInt>
</d2p1:SprintWorkSummary>
<d2p1:SprintWorkSummary>
<d2p1:AttendanceInt>6</d2p1:AttendanceInt>
<d2p1:CompletedTaskCount>3</d2p1:CompletedTaskCount>
<d2p1:PersonId>1</d2p1:PersonId>
<d2p1:PersonName>sample string 2</d2p1:PersonName>
<d2p1:TimeRemainInt>5</d2p1:TimeRemainInt>
<d2p1:TimeSpentInt>4</d2p1:TimeSpentInt>
</d2p1:SprintWorkSummary>
</Data>
<Error>
<ErrorCode>1</ErrorCode>
<ErrorMessage>sample string 1</ErrorMessage>
</Error>
<Success>true</Success>
</API_Data_ArrayOfSprintWorkSummary>