I'm trying to perform a check-in for a user via REST, from an admin account using the endpoint "site.com"/REST/objects/0/116744/latest/checkedout.aspx?_method=PUT with the JSON:
{
"Value" : "0"
}
The response JSON indicates that it's locked by someone else. Is it possible to force the check-in/undo checkout?
{
"ErrorCode": "25",
"Status": 500,
"URL": "/objects/0/116744/latest/checkedout",
"Method": "GET",
"Exception": {
"Name": "COMException",
"Message": "The object is checked out to another user.",
"InnerException": {
"Name": "MFilesException",
"Message": "The object is checked out to another user.",
"StackText": "Error reference ID: 776642f1-a5ca-41a1-895a-b257a3946b20",
"ErrorCode": "25"
}
},
"Stack": "Error reference ID: 776642f1-a5ca-41a1-895a-b257a3946b20",
"Message": "The object is checked out to another user.",
"IsLoggedToVault": true,
"IsLoggedToApplication": true,
"ExceptionName": "COMException"
}