TransferController.GetSavedExportById 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
)
<HttpGetAttribute("Export/{id}")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(404)>
<ProducesResponseTypeAttribute(440)>
Public Function GetSavedExportById (
id As Guid,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of ExportConfigData)
public:
[HttpGetAttribute(L"Export/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(404)]
[ProducesResponseTypeAttribute(440)]
ActionResult<ExportConfigData^>^ GetSavedExportById(
Guid id,
Nullable<Guid> sessionId = nullptr
)
[<HttpGetAttribute("Export/{id}")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(404)>]
[<ProducesResponseTypeAttribute(440)>]
member GetSavedExportById :
id : Guid *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<ExportConfigData>
Parameters
- id
- Type: System.Guid
The ID of the requested export. - sessionId (Optional)
- Type: System.Nullable<Guid>
The current ID of the session.
Return Value
Type:
ActionResult<ExportConfigData>The operation completed successfully. The payload contains a
ExportConfigData object.
See Also