is profileid in profile lookup page is queryable
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?
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?
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
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.