Audience filtering on non-existence of a tag.¶
Problem¶
How can I target new and existing users who do not have a specific tags?
Scenario: Existing users¶
This scenario is straight forward and behaves as expected.
1 2 3 4 |
|
Scenario: New users¶
This scenario is not straight forward and does not behave as expected.
1 2 3 4 |
|
The caveat here is that new installs do not have any tags and hence always matches the guide.
Solution
The solution in this case is
- To use a string tag with a specific value (eg True/False,access/noaccess/someaccess)
- In your app use the Contextual SDK tag api to create a string tag with a specific value
Example code for web sdk:
1 2 3 |
|
Scenario: New users and existing users with tag matching a specific string value
1 2 3 4 5 |
|
Last update:
2024-01-12