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.
Name | Description | Value |
---|---|---|
id | The unique identifier of the category. | <guid> |
color | The color associated with the category. The value is a hex value for the color. | <string> |
description | The description of the category. | <string> |
name | The 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);
});