TokenControllerResolveToken Method

POST /Token/Resolve/{id} 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 (10.0.0.1002)
Syntax
[HttpPostAttribute]
[ActionNameAttribute("Resolve")]
public IActionResult ResolveToken(
	Guid id,
	[FromBodyAttribute] ResolveTokenOptions options,
	Guid? sessionId = null
)

Parameters

id
Type: SystemGuid
The ID of the token to resolve.
options
Type: Dundas.BI.WebApi.ModelsResolveTokenOptions
The options to resolve the token with.
sessionId (Optional)
Type: SystemNullableGuid
Current session ID.

Return Value

Type: IActionResult
A String object containing the resolved parameter string representation, or a status code indicating the problem.
See Also