Open this page in the API Guide

FileController.EmptyRecycleBin Method

Empties all of the recycled files or folders from the recycle bin.

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("EmptyRecycleBin")]
[ProducesResponseTypeAttribute(440)]
public ActionResult<DeleteResultData> EmptyRecycleBin(
	[FromBodyAttribute] EmptyRecycleBinOptions? options,
	Guid? sessionId = null
)

Parameters

options
Type: Dundas.BI.WebApi.Models.EmptyRecycleBinOptions
The options to specify what recycle bin is emptied.
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