Impact of not using ECID extension in AEP WebSDK
Hi,
We are migrating from Adobe Analytics to AEP Web SDK. We are not using the ECID extension; instead, we are using the custom code below in a rule to capture the ECID and send it to Analytics Workspace:
return alloy("getIdentity")
.then(function(result) {
_satellite.setVar("experienceCloudID", result.identity.ECID);
});
This is working fine. However, when we were using Adobe Analytics with the ECID extension, we used to see two additional server requests—one from Adobe Audience Manager (type: ID Sync) and the other from Adobe Experience Cloud (type: Other). Since we no longer see these in the AEP Web SDK implementation, we wanted to understand the potential impact and whether any additional configuration is needed to ensure we are not missing any important data.
Thanks,
Kaushik Ganguly