Property Manager Name: Query String Parameter
Matches query string field names or values.
Options
- parameterName (string): The name of the query field, for example, q in ?q=string.
- matchOperator (enum string): Narrows the match according to the following criteria:
- EXISTS or DOES_NOT_EXIST tests whether the query field’s parameterName is present in the requesting URL.
- IS_ONE_OF or IS_NOT_ONE_OF tests whether the field’s value string matches.
- IS_LESS_THAN or IS_MORE_THAN matches ranges when the value is numeric.
- IS_BETWEEN also matches numeric ranges but considers lowerBound and upperBound fields rather than value.
- values (array of string values): The value of the query field, for example, string in ?q=string.
- 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 parameterName field.
- matchCaseSensitiveName (boolean): When enabled, the match is case-sensitive for the parameterName 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.
- escapeValue (boolean): When enabled, matches when the value is URL-escaped.