Open this page in the API Guide

TokenController.ResolveTokenByIds Method

Resolves multiple given tokens to a string representation of the resolved value.

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("ResolveByIds")]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<IList<string?>> ResolveTokenByIds(
	[FromBodyAttribute] IList<ResolveTokenByIdsOptions> options,
	Guid? sessionId = null
)

Parameters

options
Type: System.Collections.Generic.IList<ResolveTokenByIdsOptions>
The options to resolve the tokens with.
sessionId (Optional)
Type: System.Nullable<Guid>
Current session ID.

Return Value

Type: ActionResult<IList<String>>
The operation completed successfully. The payload contains an array of String objects containing the resolved parameter string representation.
See Also