Open this page in the API Guide

FileController.TransferCheckOut Method

Transfers the checked out file with the specified ID to the specified account 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
[HttpPostAttribute("TransferCheckOut/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(405)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult TransferCheckOut(
	Guid id,
	[FromBodyAttribute] Guid accountId,
	Guid? sessionId = null
)

Parameters

id
Type: System.Guid
The ID of the file for which to transfer the check out.
accountId
Type: System.Guid
The ID of the account to transfer the check out to.
sessionId (Optional)
Type: System.Nullable<Guid>
ID of the current session.

Return Value

Type: ActionResult
See Also