Open this page in the API Guide

FileController.EnsureVisible Method

Ensures that a particular entity is visible to the specified accounts and groups.

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("EnsureVisible/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<EnsureVisibleResultData> EnsureVisible(
	Guid id,
	[FromBodyAttribute] EnsureVisibleOptions options,
	Guid? sessionId = null
)

Parameters

id
Type: System.Guid
The ID.
options
Type: Dundas.BI.WebApi.Models.EnsureVisibleOptions
The options.
sessionId (Optional)
Type: System.Nullable<Guid>
The ID of the session.

Return Value

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