GET api/workObjective/WorkObjectiveExists?projectId={projectId}&sprintId={sprintId}&ownerId={ownerId}&systemType={systemType}&workType={workType}
Get whether the work objective exists or not
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
projectId | integer |
Required |
|
sprintId | integer |
Required |
|
ownerId | integer |
Required |
|
systemType | integer |
Default value is 0 |
|
workType | integer |
Default value is 0 |
Body Parameters
None.
Response Information
Resource Description
Get whether the work objective exists or not
API_Data_BooleanName | Description | Type | Additional information |
---|---|---|---|
Success | boolean |
None. |
|
Error | ErrorInfo |
None. |
|
Data | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "Success": true, "Error": { "ErrorCode": 1, "ErrorMessage": "sample string 1" }, "Data": true }
application/xml, text/xml
Sample:
<API_Data_boolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Common"> <Data>true</Data> <Error> <ErrorCode>1</ErrorCode> <ErrorMessage>sample string 1</ErrorMessage> </Error> <Success>true</Success> </API_Data_boolean>