Import tag list into Tag Administration console | Community
Skip to main content
October 16, 2015
Solved

Import tag list into Tag Administration console

  • October 16, 2015
  • 2 replies
  • 891 views

I have an existing tag list that I want to import into the Tag Administration console.

(See: https://docs.adobe.com/docs/en/cq/5-3/wcm/tag_admin.html#Creating%20or%20Editing%20Tags%20and%20Namespaces)

Is there a utility for importing an existing tag list, and if so, what is the preferred format (e.g., CSV)?

Thanks

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by smacdonald2008

In AEM - tags are typically created manually. However --  you can write a custom service that imports tags using the AEM TagManager API:

https://docs.adobe.com/docs/en/cq/5-6-1/javadoc/com/day/cq/tagging/TagManager.html

You can build the servie to upload a CSV file (or other file like excel) and create tags using this API. 

2 replies

smacdonald2008
smacdonald2008Accepted solution
Level 10
October 16, 2015

In AEM - tags are typically created manually. However --  you can write a custom service that imports tags using the AEM TagManager API:

https://docs.adobe.com/docs/en/cq/5-6-1/javadoc/com/day/cq/tagging/TagManager.html

You can build the servie to upload a CSV file (or other file like excel) and create tags using this API. 

dan_segalAuthor
October 16, 2015

Thanks for your prompt response.  Very helpful.

Dan