POST api/specPoints/removeEstPoints
delete estimated points based on a spec item
Request Information
URI Parameters
None.
Body Parameters
RemoveEstPointsBinderName | Description | Type | Additional information |
---|---|---|---|
ProjectId | integer |
Required |
|
SpecId | integer |
Required |
|
ModuleId | integer |
Required |
Request Formats
application/json, text/json
Sample:
{ "ProjectId": 1, "SpecId": 2, "ModuleId": 3 }
application/xml, text/xml
Sample:
<RemoveEstPointsBinder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Binding"> <ModuleId>3</ModuleId> <ProjectId>1</ProjectId> <SpecId>2</SpecId> </RemoveEstPointsBinder>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
delete estimated points based on a spec item
ApiReturnName | Description | Type | Additional information |
---|---|---|---|
Success | boolean |
None. |
|
Error | ErrorInfo |
None. |
Response Formats
application/json, text/json
Sample:
{ "Success": true, "Error": { "ErrorCode": 1, "ErrorMessage": "sample string 1" } }
application/xml, text/xml
Sample:
<ApiReturn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Common"> <Error> <ErrorCode>1</ErrorCode> <ErrorMessage>sample string 1</ErrorMessage> </Error> <Success>true</Success> </ApiReturn>