AdminControllerGetDiagnosticsStatus Method

Gets status of the application and system diagnostics generation.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (26.1.0.1000)
Syntax
[HttpGetAttribute("diagnostics/{diagnosticsId}/status")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(405)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<string> GetDiagnosticsStatus(
	Guid diagnosticsId,
	Guid? sessionId = null,
	string? key = null
)

Parameters

diagnosticsId
Type: SystemGuid
The ID of the diagnostics.
sessionId (Optional)
Type: SystemNullableGuid
The current session ID.
key (Optional)
Type: SystemString
The local access key.

Return Value

Type: ActionResultString
The operation completed successfully. The payload contains a String representing the diagnostics generation status.
Remarks
Possible status values are string representations of DiagnosticsGenerationStatus: Pending and Complete
See Also