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
)
<HttpPostAttribute("TransferCheckOut/{id}")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(405)>
<ProducesResponseTypeAttribute(410)>
<ProducesResponseTypeAttribute(440)>
Public Function TransferCheckOut (
id As Guid,
<FromBodyAttribute> accountId As Guid,
Optional sessionId As Guid? = Nothing
) As ActionResult
public:
[HttpPostAttribute(L"TransferCheckOut/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(405)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
ActionResult^ TransferCheckOut(
Guid id,
[FromBodyAttribute] Guid accountId,
Nullable<Guid> sessionId = nullptr
)
[<HttpPostAttribute("TransferCheckOut/{id}")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(405)>]
[<ProducesResponseTypeAttribute(410)>]
[<ProducesResponseTypeAttribute(440)>]
member TransferCheckOut :
id : Guid *
[<FromBodyAttribute>] accountId : Guid *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult
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