Skip to content

http.request.uri.args.values

http.request.uri.args.values Array<String>

The values of arguments in the HTTP URI query string.

The values are not pre-processed and retain the original case used in the request. They are in the same order as in the request.

Duplicated values are listed multiple times.

  • Decoding: No decoding performed
  • Non-ASCII: Preserved

Example value:

["red+apples"]

Example usage:

any(http.request.uri.args.values[*] == "red+apples")
Categories:
  • Request
  • URI