Search + K

Command Palette

Search for a command to run...

Sign In

Delete a WAF override

Deprecated
DELETE /zones/{zone_id}/firewall/waf/overrides/{overrides_id}
Copy endpoint
https://api.cloudflare.com/client/v4

Deletes an existing URI-based WAF override.

Note: Applies only to the previous version of WAF managed rules.

Parameters

path Path Parameters

Name Type
overrides_id required
type FirewallOverridesId = string
zone_id required
type FirewallIdentifier = string

Request Body

application/json required
unknown

Responses

200 application/json

Delete a WAF override response

{ result?: { id?: FirewallOverridesId

The unique identifier of the WAF override.

type FirewallOverridesId = string
; }
; }

Client Errors

4XX application/json

Delete a WAF override response failure

{ result?: { id?: FirewallOverridesId

The unique identifier of the WAF override.

type FirewallOverridesId = string
; }
; }
& interface FirewallApiResponseCommonFailure {
errors: FirewallMessages
type FirewallMessages = { code: number;message: string; }[]
;
messages: FirewallMessages
type FirewallMessages = { code: number;message: string; }[]
;
result: null;
success: false;
}