Property Manager Name: Request Cookie
Match the cookie name or value passed with the request.
Options
- cookieName (string): The name of the cookie, for example, visitor in visitor:anon.
- matchOperator (enum string): Narrows the match according to the following criteria:
- EXISTS or DOES_NOT_EXIST tests whether the cookie cookieName exists.
- IS or IS_NOT tests whether the field’s value string matches.
- IS_BETWEEN tests whether a numeric cookie value falls between lowerBound and upperBound.
- value (string): The cookie’s value, for example, anon in visitor:anon.
- lowerBound (number): When the value is numeric and the matchOperator is set to IS_BETWEEN, this field specifies the match’s minimum value.
- upperBound (number): When the value is numeric and the matchOperator is set to IS_BETWEEN, this field specifies the match’s maximum value.
- matchWildcardName (boolean): When enabled, allows * and ? wildcard matches in the cookieName field.
- matchCaseSensitiveName (boolean): When enabled, the match is case-sensitive for the cookieName field.
- matchWildcardValue (boolean): When enabled, allows * and ? wildcard matches in the value field.
- matchCaseSensitiveValue (boolean): When enabled, the match is case-sensitive for the value field.