ExportControllerGetQueuedExports Method

POST /Export/Queued Gets the pending exports which are waiting in the export queue for the specified session.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (10.0.0.1002)
Syntax
[HttpPostAttribute]
[ActionNameAttribute("Queued")]
public IActionResult GetQueuedExports(
	[FromBodyAttribute] GetQueuedExportsOptions options,
	Guid? sessionId = null
)

Parameters

options
Type: Dundas.BI.WebApi.ModelsGetQueuedExportsOptions
The options to use to retrieve the pending exports of.
sessionId (Optional)
Type: SystemNullableGuid
The ID of the session.

Return Value

Type: IActionResult
An array of ExportRequestOptions containing the export request data, or a status code indicating the problem.
See Also