Open this page in the API Guide

TokenController.ReferencedEntities Method

Gets the list of file system entities that reference the specified token.

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("ReferencedEntities/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<IList<ProjectData>> ReferencedEntities(
	Guid id,
	Guid? sessionId = null
)

Parameters

id
Type: System.Guid
Token ID.
sessionId (Optional)
Type: System.Nullable<Guid>
Current session ID.

Return Value

Type: ActionResult<IList<ProjectData>>
The operation completed successfully. The payload contains an array of ProjectData objects.
See Also