Is there any way to set a default profile field value? I am thinking I may have to do it in a BeforeCreate event
usersApi.Events.BeforeCreate += userArgs =>
{
userArgs.ProfileFields["Contact_Via_Text "].Value = "true";
};
Is there any way to set a default profile field value? I am thinking I may have to do it in a BeforeCreate event
usersApi.Events.BeforeCreate += userArgs =>
{
userArgs.ProfileFields["Contact_Via_Text "].Value = "true";
};
Yes, you may also even use the automations to do this job by using user after create / before create event to assign / update the user profile field
core_v2_user.Update({ Id: context_v2_automationTrigger.Arguments.Id, _ProfileFields_Contact_Via_Text : 'true' })
Yes, you may also even use the automations to do this job by using user after create / before create event to assign / update the user profile field
core_v2_user.Update({ Id: context_v2_automationTrigger.Arguments.Id, _ProfileFields_Contact_Via_Text : 'true' })