Liquit.Categories.List
  • 12 Dec 2023
  • 1 Minute to read
  • Dark
    Light
  • PDF

Liquit.Categories.List

  • Dark
    Light
  • PDF

Article Summary

The Liquit.Categories.List function returns all categories available to the user. Categories can be assigned to applications and help organize them. To get insight into the assigned categories, see Liquit.Application.List or Liquit.Application.Get.

Return parameters

The API call returns an array with all the categories assigned to the user. Each category will have the following properties.

NameDescriptionValue
idThe unique identifier of the category.<guid>
colorThe color associated with the category. The value is a hex value for the color.<string>
descriptionThe description of the category.<string>
nameThe friendly name of the category.<string>

Example

Liquit.Categories.List(function (result) {

	    // The result object will contain an array of all categories.
        console.log(result);
});

Was this article helpful?