All Collections
Users
User Identification
Excluding users from user identification
Excluding users from user identification

How to not include users in your MAU quota

Felipe avatar
Written by Felipe
Updated over a week ago

If so, first, you need to enable the User Identification feature in your account.

Then, your development team could use a simple IF statement to not identify specific users/groups of users.

Example (identifying only regular users and skipping your employees)

if (normalUsers){

window.userGuiding.identify(...)

}

else{}

continue the code...

Did this answer your question?