Open this page in the API Guide

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

Checks in files with the specified IDs 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")]
[ProducesResponseTypeAttribute(440)]
public ActionResult<CheckInResultData> CheckIn(
	[FromBodyAttribute] CheckInIdsOptions options,
	Guid? sessionId = null
)

Parameters

options
Type: Dundas.BI.WebApi.Models.CheckInIdsOptions
The options.
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