I'm looking to determine whether it's possible via visitor API to be able to find out all visitor ID's.
Can we extract all Visitor ID's from Adobe Analytics using API
1k views Asked by Shivaa At
2
I'm looking to determine whether it's possible via visitor API to be able to find out all visitor ID's.
In the code examples below,
[your mcorgid here]is your company's marketing cloud organization id. If you do not know this then you need to contact Adobe Client Care to get it.getMarketingCloudVisitorID - Get the Marketing Cloud Visitor ID (mid= param)
getAnalytcisVisitorID - get legacy visitor id (aid= if applicable)
getCustomerIDs - get all customer IDs
s_fid - Fallback ID
There is no built-in method for retrieving this, but you can use AA's
s.c_r()cookie reading utility function, or any other cookie reading method you have to look for thes_fidcookie. (sidenote: I do not recommend using DTM's_satellite.readCookie()method. It only looks for cookies on the current page's full (not root) domain, and there is no way to change that. Since AA and most other things usually set on root domain, it makes_satellite.readCookie()unreliable in practice).