GET api/WorkObjective/LinkedTasksSummary?projectId={projectId}&workObjectiveId={workObjectiveId}
Get linked tasks summary of a work objective
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
projectId | integer |
Required |
|
workObjectiveId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Get linked tasks summary of a work objective
API_Data_TaskSummaryName | Description | Type | Additional information |
---|---|---|---|
Success | boolean |
None. |
|
Error | ErrorInfo |
None. |
|
Data | TaskSummary |
None. |
Response Formats
application/json, text/json
Sample:
{ "Success": true, "Error": { "ErrorCode": 1, "ErrorMessage": "sample string 1" }, "Data": { "TaskCount": 1, "TimeSpentInt": 2, "TimeRemainInt": 3, "EstTotalInt": 4, "TaskPoints": 5 } }
application/xml, text/xml
Sample:
<API_Data_TaskSummary 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.Entities"> <d2p1:EstTotalInt>4</d2p1:EstTotalInt> <d2p1:TaskCount>1</d2p1:TaskCount> <d2p1:TaskPoints>5</d2p1:TaskPoints> <d2p1:TimeRemainInt>3</d2p1:TimeRemainInt> <d2p1:TimeSpentInt>2</d2p1:TimeSpentInt> </Data> <Error> <ErrorCode>1</ErrorCode> <ErrorMessage>sample string 1</ErrorMessage> </Error> <Success>true</Success> </API_Data_TaskSummary>