For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get Tags

API reference for retrieving tags in Luciq. Programmatically get the current set of tags attached to reports for the active user session.

Retrieve the tags attached to the upcoming report using this method. This method returns an array of strings.

let tags = Luciq.getTags()
NSString *tags = [Luciq getTags];
Luciq.getTags();
Luciq.getTags();
Luciq.getTags(function (tags) {
  // `tags` is the returned values
});
Luciq.getTags();

Last updated