- TLC Home Home
- Discussions Discussions
- Documentation Documentation
- Knowledge Base Knowledge Base
- Education Education
- Blog Blog
- Support Desk Support Desk
08-12-2020 01:33 AM
As part our of admin work, we would like to see a full list of all available libaries and profiles in a database. I wonder if there's an API available that ports these information, other helpful information will be publish changes, extensions and tags.
Solved! Go to Solution.
09-24-2020 03:38 PM
Hi,
You can get a list of profiles by running this command in the console of your browser while you are logged in to your Tealium account.
var profilesList = utui.profile.import._profiles;
var pl = "Profile , Library";
for(var profile in profilesList){
pl += "\n" + profilesList[profile].name + "," + profilesList[profile].library;
}
console.log(pl);
You can get more info about your Tealium account in the utui object. There is no API that will export it directly into a database. Hope this helps.
Copyright All Rights Reserved © 2008-2023