I need to access the "group participation" data for the current user. Can anybody show me how to access the data?
I need to access the "group participation" data for the current user. Can anybody show me how to access this data?
1
vote
Steve Herrick
shared this idea
Group participation data can be foubd in the fiels with name ‘Group participation’. For example:
var contact = getContactById( 123 )
for( i=0; i<contact.FieldValues.length;i++) {
var record = contact.FieldValues[i];
if( record.FieldName == ‘Group participation’)
var groups = record.Value;
}