POST api/ListItem/Delete

Delete files, folders and items

Request Information

URI Parameters

None.

Body Parameters

WorkPoint365.WebAPI.Model.DeleteItemRequest
NameDescriptionTypeAdditional information
BusinessModuleId

The id of the entity list

globally unique identifier

None.

EntityId

The id of the entity item

integer

None.

ListName

string

None.

ItemId

integer

None.

Items

Collection of Object

None.

Request Formats

application/json, text/json

Sample:
{
  "BusinessModuleId": "196f5ef9-5689-4d07-a2c8-e9cb0dc8fec1",
  "EntityId": 1,
  "ListName": "sample string 1",
  "ItemId": 1,
  "Items": null
}

application/xml, text/xml

Sample:
<DeleteItemRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WorkPoint365.WebAPI.Model">
  <BusinessModuleId>196f5ef9-5689-4d07-a2c8-e9cb0dc8fec1</BusinessModuleId>
  <EntityId>1</EntityId>
  <ItemId>1</ItemId>
  <Items xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true" />
  <ListName>sample string 1</ListName>
</DeleteItemRequest>

Response Information

Resource Description

System.Web.Http.IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.