
# x-apigateway-any-method
**含义**：API网关定义的API请求方法，用以匹配未指定定义的HTTP方法。
**作用域** ：[Path Item Object(2.0)](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#path-item-object)/[Path Item Object(3.0)](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.0.md#path-item-object)
**示例**：
```
paths:
  '/path':
    get:
      produces:
        - application/json
      responses:
        "200":
          description: "get response"
    x-apigateway-any-method:
      produces:
        - application/json
      responses:
        "200":
          description: "any response"
```
表1参数说明 
| 参数                      | 是否必选 | 类型     | 说明       |
|:---|:---|:---|:---|
| x-apigateway-any-method | 否    | String | API请求方法。 |
   
