Is it possible to distinguish between new users and existing users?
I need to know about new users, so I want some of their attributes to be different from an existing users so that my other integration can pick them up and process them, but it must only do so to new users.
1 Like
Yes, there are Global constant that you can use to distinguish between new users and existing users?
- You can use IsInsert in an expression, which will return true for new users that will be created.
- You can use IsUpdate in an expression, which will return true for existing users that will be updated.
You can read more about the usage here:
1 Like