Open this page in the API Guide

FileController.Delete Method (Guid, DeleteOptions, Nullable<Guid>)

Deletes the file or folder with the specified ID.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax
[HttpDeleteAttribute("{id}")]
[ProducesResponseTypeAttribute(440)]
public ActionResult<DeleteResultData> Delete(
	Guid id,
	DeleteOptions options,
	Guid? sessionId = null
)

Parameters

id
Type: System.Guid
The ID of the file or folder to delete.
options
Type: Dundas.BI.FileSystem.DeleteOptions
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