Expand my Community achievements bar.

Don’t miss the AEM Skill Exchange in SF on Nov 14—hear from industry leaders, learn best practices, and enhance your AEM strategy with practical tips.
SOLVED

Import tag list into Tag Administration console

Avatar

Level 1

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%20Name...)

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

Thanks

1 Accepted Solution

Avatar

Correct answer by
Level 10

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. 

View solution in original post

2 Replies

Avatar

Correct answer by
Level 10

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. 

Avatar

Level 1

Thanks for your prompt response.  Very helpful.

Dan