Liquit.Applications.Remove
  • 12 Dec 2023
  • 1 Minute to read
  • Dark
    Light
  • PDF

Liquit.Applications.Remove

  • Dark
    Light
  • PDF

Article Summary

The Liquit.Applications.Remove function removes an application from the Liquit 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);
  }
  
);

Was this article helpful?