Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! 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.