FileControllerTransferCheckOut Method

POST /File/TransferCheckOut/{id}/ 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 (10.0.0.1002)
Syntax
[HttpPostAttribute]
[ActionNameAttribute("TransferCheckOut")]
public IActionResult TransferCheckOut(
	Guid id,
	[FromBodyAttribute] Guid accountId,
	Guid? sessionId = null
)

Parameters

id
Type: SystemGuid
The ID of the file for which to transfer the check out.
accountId
Type: SystemGuid
The ID of the account to transfer the check out to.
sessionId (Optional)
Type: SystemNullableGuid
ID of the current session.

Return Value

Type: IActionResult
Status code indicating success or a reason for operation failure.
See Also