Liquit.Tags.List

Prev Next

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

Return parameters

The API call returns an array with all the tags assigned to the user. These are available because they are assigned to applications that in turn are assigned to the user. Each tag will have the following properties.

Name Description Value
id The unique identifier of the tag. <guid>
color The color associated with the tag, the value is a hex value for the color. <string>
description The description of the tag. <string>
name The friendly name of the tag. <string>

Example

Liquit.Tags.List(function (result) {

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