Open this page in the API Guide

TransferController.Import Method

Import the selected projects from the ImportConfigData object.

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("Import")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<TransferResultData> Import(
	[FromBodyAttribute] ImportOptions options,
	Guid? sessionId = null
)

Parameters

options
Type: Dundas.BI.WebApi.Models.ImportOptions
The ImportOptions object that contains all the information for the import process.
sessionId (Optional)
Type: System.Nullable<Guid>
The current session ID.

Return Value

Type: ActionResult<TransferResultData>
The operation completed successfully. The payload contains a TransferResultData object.
See Also