HTTP Methods Validation

12 tests verify that only allowed HTTP methods are accepted per endpoint as defined in the OpenAPI specification.

METHOD-001PASS

GET /users - Allowed method

GET requests to /users are allowed as defined in the OpenAPI spec.

METHOD-003BLOCKED

DELETE /users - Method not allowed

DELETE requests are blocked if not explicitly defined for this endpoint.