Hi,
I'm trying to loop through the emailaddressData to see if one of the email addresses of the target entity has a specific domain name.
When I use the API call for this target entity I see the emailaddressData is returns as an array of json 2 objects.
However, when I go into the formula sandbox and run this on the same target entity:
it returns 0
Whereas If I do it on another attribute, it does return a count of 1
Does anyone know why this behavior is different on the emailAddressData, and moreover, how to parse it?
I'm trying to loop through the emailaddressData to see if one of the email addresses of the target entity has a specific domain name.
When I use the API call for this target entity I see the emailaddressData is returns as an array of json 2 objects.
However, when I go into the formula sandbox and run this on the same target entity:
Code:
output\printLine(array\length(emailAddressData));
Whereas If I do it on another attribute, it does return a count of 1
Code:
output\printLine(array\length(teamsIds));
Comment