Types of Matchlists
There are 5 types of Matchlists:
Type | Detail | Example |
---|---|---|
STRING | Any valid string | "blacklist_value": "abcde" |
IP_NET | IP address | "ip_address": "255.255.255.255", |
IP_CIDR | IP addressing scheme | "cidr": "255.255.255.255/32", |
USER | Unit21 user entity object | "first_name": "Arthur", "last_name": "Gonzalez", "middle_name": "John", "date_of_birth": "04/05/1989", "ssn": "1112223333", "email": "[email protected]", "ip_address": "43.192.250.0", "phone_number": "+12345678901", |
BUSINESS | Unit21 business entity object | "business_name": "Acme Corp", "dba_name": "Acme Inc", "corporate_tax_id": "111223333", "street": "123 Peactree Dr", "city": "Atlanta", "state": "GA", "country": "US", "zip_code": "94205" |
User Matchlist
User matchlists let you screen events against lists of users and user data. Although no field is required, you MUST fill at least one field.
The alias fields let you check a field for a second name.
If you add
Fred
for theFirst Name
, andGrizzly
forFirst Name Alias
, the list will check whether eitherFred
orGrizzly
appears in an event'sfirst_name
field. Aliases forMiddle Name
andLast Name
work the same way.
Business Matchlist
Business matchlists let you screen events against lists of businesses and business data. Although no field is required, you MUST fill at least one field.
Single IP (IP_INET) Matchlist
To add a single IP to a matchlist, select IP_INET
as the list type. Then you can add IPs and source locations.
Range of IPs (CIDR) Matchlist
You can also add a whole range of IP addresses to an existing matchlist. This is useful when you want to do things like check against an entire IP subnet. IP ranges are in CIDR subnet mask notation°. You may want to check this caculator° for help, or ask a developer.
String Matchlist
If you want to check for a word across a variety of different fields, you can upload data as a simple string. A string could be any word or collection of words.
Updated 9 months ago