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
)
<HttpPostAttribute("ResolveByIds")>
<ProducesResponseTypeAttribute(410)>
<ProducesResponseTypeAttribute(440)>
Public Function ResolveTokenByIds (
<FromBodyAttribute> options As IList(Of ResolveTokenByIdsOptions),
Optional sessionId As Guid? = Nothing
) As ActionResult(Of IList(Of String))
public:
[HttpPostAttribute(L"ResolveByIds")]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
ActionResult<IList<String^>^>^ ResolveTokenByIds(
[FromBodyAttribute] IList<ResolveTokenByIdsOptions^>^ options,
Nullable<Guid> sessionId = nullptr
)
[<HttpPostAttribute("ResolveByIds")>]
[<ProducesResponseTypeAttribute(410)>]
[<ProducesResponseTypeAttribute(440)>]
member ResolveTokenByIds :
[<FromBodyAttribute>] options : IList<ResolveTokenByIdsOptions> *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<IList<string>>
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