Skip to main content
1-Visitor
March 24, 2017
Question

How to add data tag term using javascript code

  • March 24, 2017
  • 1 reply
  • 1323 views

Is there any way to add terms in an existing data tag dynamically using javascript in service?

1 reply

5-Regular Member
March 24, 2017

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.