POST api/Resources

Request Information

URI Parameters

None.

Body Parameters

Collection of ResourceDeleteParams
NameDescriptionTypeAdditional information
ResourceId

integer

None.

IsFolder

boolean

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "ResourceId": 1,
    "IsFolder": true
  },
  {
    "ResourceId": 1,
    "IsFolder": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfResourceDeleteParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ResourceDeleteParams>
    <ResourceId>1</ResourceId>
    <IsFolder>true</IsFolder>
  </ResourceDeleteParams>
  <ResourceDeleteParams>
    <ResourceId>1</ResourceId>
    <IsFolder>true</IsFolder>
  </ResourceDeleteParams>
</ArrayOfResourceDeleteParams>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'List`1'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.