Open this page in the API Guide

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
)

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