Open this page in the API Guide

TransferController.UpdateExportConfiguration Method

Updates the custom export configuration.

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("ExportConfigurations/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(404)]
[ProducesResponseTypeAttribute(409)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<ExportConfigData> UpdateExportConfiguration(
	Guid id,
	[FromBodyAttribute] ExportConfigData exportConfigData,
	Guid? sessionId = null
)

Parameters

id
Type: System.Guid
The ID of the export configuration to be updated.
exportConfigData
Type: Dundas.BI.WebApi.Models.ExportConfigData
An ExportConfigData object containing everything needed to create the configuration file.
sessionId (Optional)
Type: System.Nullable<Guid>
The current session ID.

Return Value

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