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

Liquit.Tags.List

  • Dark
    Light
  • PDF

Article Summary

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.

NameDescriptionValue
idThe unique identifier of the tag.<guid>
colorThe color associated with the tag, the value is a hex value for the color.<string>
descriptionThe description of the tag.<string>
nameThe 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);
});

Was this article helpful?

What's Next