FileControllerGetRecycleBinFolder Method

Gets the recycle bin folder.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax
[HttpGetAttribute("RecycleBin")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<FileData?> GetRecycleBinFolder(
	Guid? sessionId = null,
	Guid? accountId = null,
	Guid? tenantId = null,
	bool createIfNotExists = true
)

Parameters

sessionId (Optional)
Type: SystemNullableGuid
Current session ID.
accountId (Optional)
Type: SystemNullableGuid
The optional account ID to get the recycle bin folder for a specific account.
tenantId (Optional)
Type: SystemNullableGuid
The tenant ID associated with the account's recycle bin.
createIfNotExists (Optional)
Type: SystemBoolean
Pass to create the recycle bin folder, if its does not exist, otherwise.

Return Value

Type: ActionResultFileData
The operation completed successfully. The payload contains a FileData object if the recycle bin folder exists or if createIfNotExists is set to , if the recycle bin folder does not exist and createIfNotExists is set to .
See Also