FileController.BatchDelete Method |
Deletes the files or folders with the specified IDs.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[HttpPostAttribute("Delete")]
[ProducesResponseTypeAttribute(440)]
public ActionResult<DeleteResultData> BatchDelete(
[FromBodyAttribute] BatchDeleteOptions options,
Guid? sessionId = null
)
<HttpPostAttribute("Delete")>
<ProducesResponseTypeAttribute(440)>
Public Function BatchDelete (
<FromBodyAttribute> options As BatchDeleteOptions,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of DeleteResultData)
public:
[HttpPostAttribute(L"Delete")]
[ProducesResponseTypeAttribute(440)]
ActionResult<DeleteResultData^>^ BatchDelete(
[FromBodyAttribute] BatchDeleteOptions^ options,
Nullable<Guid> sessionId = nullptr
)
[<HttpPostAttribute("Delete")>]
[<ProducesResponseTypeAttribute(440)>]
member BatchDelete :
[<FromBodyAttribute>] options : BatchDeleteOptions *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<DeleteResultData>
Parameters
- options
- Type: Dundas.BI.WebApi.Models.BatchDeleteOptions
Options affecting the behavior of the operation. - sessionId (Optional)
- Type: System.Nullable<Guid>
ID of the current session.
Return Value
Type:
ActionResult<DeleteResultData>The operation completed successfully. The payload contains a
DeleteResultData object.
See Also