LicenseActivationController.ActivateManual Method |
Triggers a refresh using the manual workflow with the activation response provided.
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("ActivateManual")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(409)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<ActivationResultData?> ActivateManual(
[FromBodyAttribute] string manualActivationResponse,
Guid? sessionId = null
)
<HttpPostAttribute("ActivateManual")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(409)>
<ProducesResponseTypeAttribute(440)>
Public Function ActivateManual (
<FromBodyAttribute> manualActivationResponse As String,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of ActivationResultData)
public:
[HttpPostAttribute(L"ActivateManual")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(409)]
[ProducesResponseTypeAttribute(440)]
ActionResult<ActivationResultData^>^ ActivateManual(
[FromBodyAttribute] String^ manualActivationResponse,
Nullable<Guid> sessionId = nullptr
)
[<HttpPostAttribute("ActivateManual")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(409)>]
[<ProducesResponseTypeAttribute(440)>]
member ActivateManual :
[<FromBodyAttribute>] manualActivationResponse : string *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<ActivationResultData>
Parameters
- manualActivationResponse
- Type: System.String
The serialized activation response for the manual activation. - sessionId (Optional)
- Type: System.Nullable<Guid>
The current session ID.
Return Value
Type:
ActionResult<ActivationResultData>The operation completed successfully. The payload contains a
ActivationResultData object representing the result of the license activation.
See Also