Create a new routing rule for a link
AND or OR| Field | Type | Description |
|---|---|---|
field | string | Targeting field to evaluate |
operator | string | Comparison operator |
value | string/array | Value(s) to compare against |
country, region, city, timezone, isp, asn, latitude, longitude
deviceType, os, osVersion, browser, browserVersion, deviceBrand
vpn, proxy, tor, datacenter, bot, isCrawler
referrer, referrerDomain, utmSource, utmMedium, utmCampaign, utmTerm, utmContent
hour, dayOfWeek
isNewVisitor, isReturning
| Operator | Description | Example |
|---|---|---|
equals | Exact match | country equals "US" |
not_equals | Does not match | country not_equals "CN" |
contains | String contains | referrer contains "google" |
not_contains | String doesn’t contain | referrer not_contains "spam" |
in | Value in array | country in ["US", "CA", "UK"] |
not_in | Value not in array | country not_in ["CN", "RU"] |
greater_than | Numeric comparison | hour greater_than 17 |
less_than | Numeric comparison | hour less_than 9 |
is_true | Boolean true | vpn is_true |
is_false | Boolean false | bot is_false |