TokenControllerQueryTokens 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.ModelsGetTokensOptions
An object that carries all needed information about the tokens that need to be retrieved.
sessionId (Optional)
Type: SystemNullableGuid
Current session ID.

Return Value

Type: ActionResultIListTokenDefinitionData
The operation completed successfully. The payload contains an array of TokenDefinitionData objects.
See Also