How to Get TagId using TagName in with TagManger API | Community
Skip to main content
rajkumarsamala
Level 2
October 11, 2017
Solved

How to Get TagId using TagName in with TagManger API

  • October 11, 2017
  • 2 replies
  • 4554 views

Hi All,

i was looking for a way to read the TagId Eg: Sea:Water/Fish from TagName Eg: Fish

i read the Tag Manager API Doc, TagManager (Adobe AEM 6.0.0 API 6.0.0 API)

it has Two methods to Find Tag Details'

TagManager.FindResults findByTitle(String title)

RangeIterator<Resource> find(String tagID)

But my case is different Here,

i don't have TagId, TagTile, all i have is Tag Name,

Wondering is there any way to get the tagId using tagName ?

Thanks

Raj

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 Ashwin_Raju

Hi Raj,

You can try using TagManager.resolveByTitle("tagTitlePath") or TagManager.resolve("tagPath"). Once you get the Tag object you will be able to get the Tag ID from it using Tag.getTagID() method.

2 replies

Ashwin_RajuAccepted solution
Level 3
October 11, 2017

Hi Raj,

You can try using TagManager.resolveByTitle("tagTitlePath") or TagManager.resolve("tagPath"). Once you get the Tag object you will be able to get the Tag ID from it using Tag.getTagID() method.

VeenaVikraman
Community Advisor
Community Advisor
October 11, 2017

That's correct !!