Open this page in the API Guide

ParameterController.ResolveParameterValues Method

Resolves parameter values with tokens to return parameter values with discrete values. If any of the given parameter values contains no tokens, then the same value is returned.

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("ResolveParameterValues")]
public ActionResult<IList<ParameterValueData>> ResolveParameterValues(
	[FromBodyAttribute] IList<ResolveParameterValueOptions> options,
	Guid? sessionId = null
)

Parameters

options
Type: System.Collections.Generic.IList<ResolveParameterValueOptions>
The options to use for resolving the parameter values.
sessionId (Optional)
Type: System.Nullable<Guid>
Current session ID.

Return Value

Type: ActionResult<IList<ParameterValueData>>
The operation completed successfully. The payload contains an array of ParameterValueData representation of the value with discrete values.
See Also