Open this page in the API Guide

TransferController.UpdateExportConfigurationInfo Method

Updated the export configuration info.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax
[HttpPutAttribute("UpdateConfiguration/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(404)]
[ProducesResponseTypeAttribute(409)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<ExportConfigInfoData> UpdateExportConfigurationInfo(
	Guid id,
	[FromBodyAttribute] ExportConfigInfoData exportConfigInfoData,
	Guid? sessionId = null
)

Parameters

id
Type: System.Guid
The ID of the export configuration to be updated.
exportConfigInfoData
Type: Dundas.BI.WebApi.Models.ExportConfigInfoData
An ExportConfigInfoData object containing everything to update the configurations info.
sessionId (Optional)
Type: System.Nullable<Guid>
The current session ID.

Return Value

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