Property Manager Name: Response Header
Match HTTP header names or values.
Options
- headerName (string): The name of the response header, for example, Content-Type.
- matchOperator (enum string): Narrows the match according to the following criteria:
- EXISTS or DOES_NOT_EXIST tests whether the HTTP field headerName is present.
- 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 response header’s value, for example, application/x-www-form-urlencoded when the header headerName is Content-Type.
- 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 headerName 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.