Open this page in the API Guide

FileController.RestoreRecycleBin Method

Restores the recycled 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("RestoreRecycleBin")]
[ProducesResponseTypeAttribute(440)]
public ActionResult<RestoreResultData> RestoreRecycleBin(
	[FromBodyAttribute] RestoreRecycleBinOptions options,
	Guid? sessionId = null
)

Parameters

options
Type: Dundas.BI.WebApi.Models.RestoreRecycleBinOptions
The options to specify what is restored.
sessionId (Optional)
Type: System.Nullable<Guid>
ID of the current session.

Return Value

Type: ActionResult<RestoreResultData>
The operation completed successfully. The payload contains a RestoreResultData object.
See Also