TokenControllerGetVisibleTokens Method

POST /Token/VisibleTokens 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 (10.0.0.1002)
Syntax
[HttpPostAttribute]
[ActionNameAttribute("VisibleTokens")]
public IActionResult GetVisibleTokens(
	[FromBodyAttribute] IList<Guid> projectIds,
	Guid? sessionId = null
)

Parameters

projectIds
Type: System.Collections.GenericIListGuid
List of project IDs.
sessionId (Optional)
Type: SystemNullableGuid
Current session ID.

Return Value

Type: IActionResult
A status code indicating success or failure. If successful, a list of TokenDefinitionData objects.
See Also