Attribute IDs invisible with the new UI...

Gold Contributor
Gold Contributor

Since the new UI has kicked in I can't manage to find the id of AudienceStream attributes. I used to do that by checking inspect element, but that method is not working anymore.

Thanks

3 REPLIES 3

Attribute IDs invisible with the new UI...

Gold Contributor
Gold Contributor

Nevermind, found it...

When editing the attribute, use inspect element option on title of the property being edited. It's a bit complicated, but at least it's something...

title.png

Attribute IDs invisible with the new UI...

Tealium Employee

@amarkic You can use this Tealium Tools custom tool to export all attributes and their IDs.

 

Attribute IDs invisible with the new UI...

Silver Contributor
Silver Contributor
test = gApp.inMemoryModels.quantifierCollection.models
test.forEach(function(element) {
  var id = element.attributes.id;
  var match = element.attributes.name;

$('.context-md.title.text-truncate').filter(function() { 
 
       if($(this).text() == match )
 {


		this.prepend(" ("+id+") ");
		

}



})


})

 

try this in your console? it's a little messy but i have got it to work on mine.

Just navigate to the Attributes section and run that script

@amarkic

Public