POST api/Event/Delete
Delete event based on event id or task id
Request Information
URI Parameters
None.
Body Parameters
EventBinder| Name | Description | Type | Additional information | 
|---|---|---|---|
| EventId | integer | None. | |
| ProjectId | integer | None. | |
| TaskId | integer | None. | 
Request Formats
application/json, text/json
            Sample:
        
{
  "EventId": 1,
  "ProjectId": 2,
  "TaskId": 3
}
        application/xml, text/xml
            Sample:
        <EventBinder 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> <EventId>1</EventId> </EventBinder>
application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
Delete event based on event 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>