Hi,
I am trying to get the Adobe experienceCloudId by editing the plugin as such. But the cloudId is always coming back empty. Any one faced this issue before?
function Success(cloudId) {
$parameters.CloudId = cloudId;
$parameters.Success = true;
$parameters.ErrorCode = 0;
$resolve();
}
function Fail(message) {
$parameters.Success = false;
$parameters.ErrorCode = 1;
$parameters.ErrorMessage = message;
ACPIdentity.getExperienceCloudId(Success, Fail);