The Liquit.Applications.Remove function removes an application from the Application Workspace.
Example
You need to specify at least the ID of the application you want to remove as shown in the example below:
Liquit.Applications.Remove(
// The id of the application you want to remove from the workspace.
'00000000-0000-0000-0000-000000000000',
// The callback function that provides feedback.
function (fault, result) {
console.log(result);
}
);