POST api/ListMaintenance/Delete/{itemId}
Delete list item
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| itemId |
List Item Id |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
API Result
APIResult| Name | Description | Type | Additional information |
|---|---|---|---|
| IsValid |
API call result |
boolean |
None. |
| Comments |
Comments about the activities of the API call |
string |
None. |
| Errors |
List of 0 to many errors encountered processing the API call |
Collection of ErrorMessage |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsValid": true,
"Comments": "sample string 2",
"Errors": [
{
"Message": "sample string 1"
},
{
"Message": "sample string 1"
}
]
}
application/xml, text/xml
Sample:
<APIResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NextProcess.Web.API.Controllers.Util">
<Comments>sample string 2</Comments>
<Errors>
<APIResult.ErrorMessage>
<Message>sample string 1</Message>
</APIResult.ErrorMessage>
<APIResult.ErrorMessage>
<Message>sample string 1</Message>
</APIResult.ErrorMessage>
</Errors>
<IsValid>true</IsValid>
</APIResult>