Request method is not

Matches when the request method is not one of the selected methods.

This condition inspects the HTTP method of the incoming request and returns true if it does not match any of the methods in the selected list.

Configuration

  • Available request methods: A list of standard HTTP methods available for selection, including CONNECT, DELETE, GET, HEAD, OPTIONS, PATCH, POST, PUT, and TRACE.
  • Selected methods: The list of methods that the request must not use for the condition to return true. If a request uses a method present in this list, the condition returns false.

Measurement

The condition extracts the method name from the incoming request and compares it against the Selected methods list. It returns true only if the request method is absent from that list. If the request method is found in the list, or if the request context is unavailable, the condition returns false.


Last modified March 5, 2026