Community Tip - Learn all about the Community Ranking System, a fun gamification element of the PTC Community. X
Is there any way to add terms in an existing data tag dynamically using javascript in service?
Hi Tushar, did you already check the AddVocabularyTerm service? You can call this to add terms to DataTags
var params = {
term: undefined /* STRING */
};
// no return
DataTags["TestTag"].AddVocabularyTerm(params);
Hope this helps.