Open this page in the API Guide

TokenController.ResolveToken Method

Resolves the given token 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("Resolve/{id}")]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<string?> ResolveToken(
	Guid id,
	[FromBodyAttribute] ResolveTokenOptions options,
	Guid? sessionId = null
)

Parameters

id
Type: System.Guid
The ID of the token to resolve.
options
Type: Dundas.BI.WebApi.Models.ResolveTokenOptions
The options to resolve the token with.
sessionId (Optional)
Type: System.Nullable<Guid>
Current session ID.

Return Value

Type: ActionResult<String>
The operation completed successfully. The payload contains a String object containing the resolved parameter string representation.
See Also