Expand my Community achievements bar.

SOLVED

how can I get post_visid_high/low through visitor.getxxxID() on the console of browser

Avatar

Level 1

how can I get post_visid_high/low through visitor.getxxxID() on the console of browser, thanks.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

I don't believe you can get that number from the console of the browser. Visid _High and _low are backend ids, they are not disclosed to the front end....

 

You can get the Marketing Cloud Visitor ID (mid/ecid/etc):

var mcid = visitor.getMarketingCloudVisitorID(useMarketingCloudID)
//useMarketingCloudID is your organization id

 

or if you just need to track it to a prop or eVar you can use:

s.prop1 = "D=mid";

 

or 

Jennifer_Dungan_0-1671943198518.png

 

 

You can also get AID or Fallback IDs if they exist... but none of those will correspond to visid_high/low

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

I don't believe you can get that number from the console of the browser. Visid _High and _low are backend ids, they are not disclosed to the front end....

 

You can get the Marketing Cloud Visitor ID (mid/ecid/etc):

var mcid = visitor.getMarketingCloudVisitorID(useMarketingCloudID)
//useMarketingCloudID is your organization id

 

or if you just need to track it to a prop or eVar you can use:

s.prop1 = "D=mid";

 

or 

Jennifer_Dungan_0-1671943198518.png

 

 

You can also get AID or Fallback IDs if they exist... but none of those will correspond to visid_high/low

Avatar

Community Advisor

Short answer: you can't.

All "post_..." dimensions are only available in AA's backend, because they are "post processed", i.e. processed after data has been collected. You can see these dimensions in Data Feeds only.