FileControllerCheckIn Method (Guid, CheckInOptions, NullableGuid)

Checks in the file with the specified ID and comments.

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("CheckIn/{id}")]
[ProducesResponseTypeAttribute(440)]
public ActionResult<CheckInResultData> CheckIn(
	Guid id,
	[FromBodyAttribute] CheckInOptions options,
	Guid? sessionId = null
)

Parameters

id
Type: SystemGuid
The ID of the file to check in.
options
Type: Dundas.BI.WebApi.ModelsCheckInOptions
The options for this check in.
sessionId (Optional)
Type: SystemNullableGuid
ID of the current session.

Return Value

Type: ActionResultCheckInResultData
The operation completed successfully. The payload contains an CheckInResultData object.
See Also