request_method
| Version: v2025-07-07 | Includes use: Yes | 
|---|
Criterion name: Request Method
Specify the request's HTTP verb. Also supports WebDAV methods and common Akamai operations.
Default criterion
These samples reflect the criterion's default settings. You can use these as is in your configurations or make adjustments based on the criterion's available options.
data "akamai_property_rules_builder" "request_method" {
  rules_v2025_07_07 {
    name     = "Request Method"
    comments = "Specify the request's HTTP verb."
    criterion {
      request_method {
        match_operator = "IS"
        value = "GET"
      }
    }
  }
}
"criterion": [
  {
    "name": "requestMethod",
    "options": {
      "matchOperator": "IS",
      "value": "GET"
    }
  }
]
Options
| Option | Description | 
|---|---|
| match_operator | Matches the  valuewhen set toIS, otherwiseIS_NOTreverses the match. Value is one of:
 | 
| value | An HTTP method, WebDAV method, or Akamai operation. Value is one of:
           
 | 
Updated 3 months ago
