Open this page in the API Guide

TransferController.GetTransferFileInfo Method

Gets an object describing the contents of a transfer file.

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("FileInfo")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(404)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<TransferFileInfoData> GetTransferFileInfo(
	[FromBodyAttribute] GetTransferFileInfoOptions options,
	Guid? sessionId = null
)

Parameters

options
Type: Dundas.BI.WebApi.Models.GetTransferFileInfoOptions
The options class used to determine which transfer file to get and what is sent back.
sessionId (Optional)
Type: System.Nullable<Guid>
The current session ID.

Return Value

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