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
)
<HttpPutAttribute("UpdateConfiguration/{id}")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(404)>
<ProducesResponseTypeAttribute(409)>
<ProducesResponseTypeAttribute(440)>
Public Function UpdateExportConfigurationInfo (
id As Guid,
<FromBodyAttribute> exportConfigInfoData As ExportConfigInfoData,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of ExportConfigInfoData)
public:
[HttpPutAttribute(L"UpdateConfiguration/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(404)]
[ProducesResponseTypeAttribute(409)]
[ProducesResponseTypeAttribute(440)]
ActionResult<ExportConfigInfoData^>^ UpdateExportConfigurationInfo(
Guid id,
[FromBodyAttribute] ExportConfigInfoData^ exportConfigInfoData,
Nullable<Guid> sessionId = nullptr
)
[<HttpPutAttribute("UpdateConfiguration/{id}")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(404)>]
[<ProducesResponseTypeAttribute(409)>]
[<ProducesResponseTypeAttribute(440)>]
member UpdateExportConfigurationInfo :
id : Guid *
[<FromBodyAttribute>] exportConfigInfoData : ExportConfigInfoData *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<ExportConfigInfoData>
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