Skip to content

http.request.uri.args.names

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

The names of the arguments in the HTTP URI query string.

When a name repeats, the array contains multiple items in the order that they appear in the request.

The names are not pre-processed and retain the original case used in the request.

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

Example value:

["search"]

Example usage:

any(http.request.uri.args.names[*] == "search")
Categories:
  • Request
  • URI