TransferControllerGetSavedExportById Method

Retrieves the export configuration based on the 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("Export/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(404)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<ExportConfigData> GetSavedExportById(
	Guid id,
	Guid? sessionId = null
)

Parameters

id
Type: SystemGuid
The ID of the requested export.
sessionId (Optional)
Type: SystemNullableGuid
The current ID of the session.

Return Value

Type: ActionResultExportConfigData
The operation completed successfully. The payload contains a ExportConfigData object.
See Also