Open this page in the API Guide

TokenController.QueryTokens Method

Gets a list of TokenDefinitionData objects matching the specified criteria.

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("QueryTokens")]
[ProducesResponseTypeAttribute(440)]
public ActionResult<IList<TokenDefinitionData>> QueryTokens(
	[FromBodyAttribute] GetTokensOptions options,
	Guid? sessionId = null
)

Parameters

options
Type: Dundas.BI.WebApi.Models.GetTokensOptions
An object that carries all needed information about the tokens that need to be retrieved.
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