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

Liquit.Applications.Favorite

  • Dark
    Light
  • PDF

Article Summary

The Liquit.Applications.Favorite function adds an application to the favorites list of the end-user. This function requires the ID of the application you want to add to the favorites list.

Usage and example

You need to specify at least the values shown in the example below:

Liquit.Applications.Favorite(

  // The id of the application you want to favorite or unfavorite.
  '00000000-0000-0000-0000-000000000000', 
  
  // True adds the application to the favorites, false removes the application from the favorites.
  true, 

  // Callback which either returns an error or the result of the API call.
  function (fault, result) {
    console.log(result);
  }

);

Was this article helpful?