Log in to your Adobe Connect account.
As there is no upfront option available in the GUI to rename Popular Tags on Event Catalog Page, APIs enable this functionality.
Environment
- Adobe Connect Hosted
- Adobe Connect On-Premise
- Adobe Connect version 9.5 and higher
Question
How to rename "Popular Tags" on Event Catalog page in Adobe Connect?
Answer
To rename Popular Tags on Event Catalog Page, use APIs as discussed below:
-
-
Identify the Tag ID associated with the tag you want to rename:
https://<your-domain>/api/xml?action=list-acl-tags&acl-id={event_sco_id}
Replace {event_sco_id} with the SCO-ID of an event in the catalog.
Event catalog showing the options to edit the event Event catalog showing the options to edit the event -
Run the tag-update API to rename the tag:
https://<your-domain>/api/xml?action=tag-update&tag-id={tagID}&tag-name={newName}
Replace:
<your-domain> with your Adobe Connect domain.
{tagID} with the tag ID retrieved in step 2.
{newName} with the desired new name for the tag.
:memo: Example:
If your tag ID is 123456 and you want to rename it to "Featured Topics":
https://yourcompany.adobeconnect.com/api/xml?action=tag-update&tag-id=123456&tag-name=Featured%20Topics