I have a rules_dispatcher activity that updates a custom field in an event where the field is a string value.
activities = {
{
"update_event_ejb",
eventId = [[ PARENT_EVENT_ID ]],
customFields = [[
{
{ customFieldShortCode = "APPLICATIONSLIST",
stringValue = "" .. ARRAY_STRING
},
}
]],
},
},
I also have a field that is a single-select Contact User lookup that also needs to be set, and I have the short code of the Contact User record to be used. However, I don’t know what the format for the update_event_ejb activity should be. I’ve tried various connotations of lookup {} options but with no success.
Would someone be able to shed some light on it, please?
Many thanks, Steven