LogOnController.ExecuteSessionToken Method |
Exchanges the specified session token for the associated session ID.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[HttpGetAttribute("ExecuteSessionToken/{id}")]
[ProducesResponseTypeAttribute(410)]
public ActionResult<Guid?> ExecuteSessionToken(
Guid id
)
<HttpGetAttribute("ExecuteSessionToken/{id}")>
<ProducesResponseTypeAttribute(410)>
Public Function ExecuteSessionToken (
id As Guid
) As ActionResult(Of Guid?)
public:
[HttpGetAttribute(L"ExecuteSessionToken/{id}")]
[ProducesResponseTypeAttribute(410)]
ActionResult<Nullable<Guid>>^ ExecuteSessionToken(
Guid id
)
[<HttpGetAttribute("ExecuteSessionToken/{id}")>]
[<ProducesResponseTypeAttribute(410)>]
member ExecuteSessionToken :
id : Guid -> ActionResult<Nullable<Guid>>
Parameters
- id
- Type: System.Guid
The session token.
Return Value
Type:
ActionResult<Nullable<Guid>>The operation completed successfully. The payload contains a
Guid representing the session ID corresponding to the session token.
See Also