I am trying to update a user's conversation settings in an automation. I'm attached to the User.AfterCreate event and this is the code I have in my automation:
var user = core_v2_user.Get({ Id: context_v2_automationTrigger.Arguments.Id }); core_v2_user.Update({ Id: context_v2_automationTrigger.Arguments.Id, ConversationContactType: 'AllUsers'})
I am executing the automation as the contextual user, but this seems to not be working.
I don't see the ConversationContactType in the core_v2_user.Update() api documentation, but it appears to be set up this way within the settings widget.