Open this page in the API Guide

FileController.CheckIn Method (Guid, CheckInOptions, Nullable<Guid>)

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: System.Guid
The ID of the file to check in.
options
Type: Dundas.BI.WebApi.Models.CheckInOptions
The options for this check in.
sessionId (Optional)
Type: System.Nullable<Guid>
ID of the current session.

Return Value

Type: ActionResult<CheckInResultData>
The operation completed successfully. The payload contains an CheckInResultData object.
See Also