POST api/Note/Delete
Delete notes based on note id or task id
Request Information
URI Parameters
None.
Body Parameters
NoteBinder| Name | Description | Type | Additional information |
|---|---|---|---|
| NoteId | integer |
None. |
|
| ProjectId | integer |
None. |
|
| TaskId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"NoteId": 1,
"ProjectId": 2,
"TaskId": 3
}
application/xml, text/xml
Sample:
<NoteBinder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Binding"> <ProjectId>2</ProjectId> <TaskId>3</TaskId> <NoteId>1</NoteId> </NoteBinder>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Delete notes based on note id or task id
ApiReturn| Name | 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>