TokenController.QueryTokens Method |
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("QueryTokens")]
[ProducesResponseTypeAttribute(440)]
public ActionResult<IList<TokenDefinitionData>> QueryTokens(
[FromBodyAttribute] GetTokensOptions options,
Guid? sessionId = null
)
<HttpPostAttribute("QueryTokens")>
<ProducesResponseTypeAttribute(440)>
Public Function QueryTokens (
<FromBodyAttribute> options As GetTokensOptions,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of IList(Of TokenDefinitionData))
public:
[HttpPostAttribute(L"QueryTokens")]
[ProducesResponseTypeAttribute(440)]
ActionResult<IList<TokenDefinitionData^>^>^ QueryTokens(
[FromBodyAttribute] GetTokensOptions^ options,
Nullable<Guid> sessionId = nullptr
)
[<HttpPostAttribute("QueryTokens")>]
[<ProducesResponseTypeAttribute(440)>]
member QueryTokens :
[<FromBodyAttribute>] options : GetTokensOptions *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<IList<TokenDefinitionData>>
Parameters
- options
- Type: Dundas.BI.WebApi.Models.GetTokensOptions
An object that carries all needed information about the tokens that need to be retrieved. - sessionId (Optional)
- Type: System.Nullable<Guid>
Current session ID.
Return Value
Type:
ActionResult<IList<TokenDefinitionData>>The operation completed successfully. The payload contains an array of
TokenDefinitionData objects.
See Also