Open this page in the API Guide

TokenController.GetVisibleTokens Method

Gets a list of tokens visible to the caller, filtered by project 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
[HttpPostAttribute("VisibleTokens")]
[ProducesResponseTypeAttribute(440)]
public ActionResult<IList<TokenDefinitionData>> GetVisibleTokens(
	[FromBodyAttribute] IList<Guid> projectIds,
	Guid? sessionId = null
)

Parameters

projectIds
Type: System.Collections.Generic.IList<Guid>
List of project IDs.
sessionId (Optional)
Type: System.Nullable<Guid>
Current session ID.

Return Value

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