Can we get a list of all available libraries and profiles onto a database

Bronze Contributor
Bronze Contributor

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.

1 REPLY 1

Can we get a list of all available libraries and profiles onto a database

Bronze Contributor
Bronze Contributor

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. 

Public