Open this page in the API Guide

TokenController.GetParameterTokensWithOptions Method

Retrieves the parameter tokens.

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("GetParameterTokens")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<IList<ParameterTokenData>> GetParameterTokensWithOptions(
	[FromBodyAttribute] GetParameterTokensOptions options,
	Guid? sessionId = null
)

Parameters

options
Type: Dundas.BI.WebApi.Models.GetParameterTokensOptions
The supplied GetParameterTokensOptions class with the options for getting the parameter tokens.
sessionId (Optional)
Type: System.Nullable<Guid>
Current session ID.

Return Value

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