Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026 Agenda Now Available: Explore Sessions
cancel
Showing results for 
Search instead for 
Did you mean: 
tynernies
Contributor
Contributor

Editing Qlik App Tags

I have a use case in which I would like to update the tags within the app details page of a qlik app. I have a number of apps that get triggered externally via Airflow whether it be daily, weekly, etc. and would like to update the Qlik app tags as one of the tasks apart of my DAG. These can be a number of things, dependencies, dag name, load status, app owner, refresh frequency, next refresh time, etc. but I would like to be able to edit these details. Is this possible through the API? I have found that you can read and update certain attributes via the 

PUT /api/v1/items/{itemId}

endpoint, but every time I try to update the tags, it doesn't work. Wondering if anyone has had a use case like this before and if so, if there's a way to update the tags via the API. 

Labels (3)
1 Solution

Accepted Solutions
Dave_Channon
Employee
Employee

Hi @tynernies 

Tags are collections of type public - see https://qlik.dev/apis/rest/collections/#get-v1-collections

You have to add items to a collection, rather than editing an item's collections. So use the collections API to add items to a tag.

Hope that helps!

View solution in original post

1 Reply
Dave_Channon
Employee
Employee

Hi @tynernies 

Tags are collections of type public - see https://qlik.dev/apis/rest/collections/#get-v1-collections

You have to add items to a collection, rather than editing an item's collections. So use the collections API to add items to a tag.

Hope that helps!