is the profileid which is available in profile lookup page, is that available to use in query service as well in any attribute from snapshot table or any other system table?
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Hi @itsMeTechy ,
Yes - the same GUID you see as Profile ID in the Profile Lookup UI is exposed in Query Service, but only in the hidden system‐metadata column. To surface it, prepend your session with:
SET drop_system_columns = false;
and then you can select it as:
SELECT _acp_system_metadata.recordId AS profile_id, ... FROM profile_attribute_<yourSchemaUUID>;
See Access dataset batch metadata in the Adobe Experience Platform Query Service here.
Thanks,
Ankit
Hi @itsMeTechy ,
Yes - the same GUID you see as Profile ID in the Profile Lookup UI is exposed in Query Service, but only in the hidden system‐metadata column. To surface it, prepend your session with:
SET drop_system_columns = false;
and then you can select it as:
SELECT _acp_system_metadata.recordId AS profile_id, ... FROM profile_attribute_<yourSchemaUUID>;
See Access dataset batch metadata in the Adobe Experience Platform Query Service here.
Thanks,
Ankit
Thanks for the information.
id what i see in _acp_system_metadata is not the same as visible in the profile lookup page.
Views
Replies
Total Likes
@itsMeTechy not sure I fully understand what you want to achieve but in case that helps a little, the only way I found to use the profileID (XID) so far is through something like:
GET https://platform.adobe.io/data/core/identity/cluster/members?xid=[value]
.. which would return all profileIDs stitched together for that initial profile:
Views
Likes
Replies