Search + K

Command Palette

Search for a command to run...

Sign In

Delete a rate limit

Deprecated
DELETE /zones/{zone_id}/rate_limits/{rate_limit_id}
Copy endpoint
https://api.cloudflare.com/client/v4

Deletes an existing rate limit.

Parameters

path Path Parameters

Name Type
rate_limit_id required
type FirewallRateLimitId = string
zone_id required
type FirewallIdentifier = string

Request Body

application/json required
unknown

Responses

200 application/json

Delete a rate limit response.

type FirewallRatelimitResponseSingle = type FirewallApiResponseSingle = never & { result?: FirewallRateLimits
type FirewallRateLimits = FirewallRatelimit & {}
; }
& { result?: { id?: FirewallId

The unique identifier of the rate limit.

type FirewallId = string
; }
; }

Client Errors

4XX application/json

Delete a rate limit response failure.

type FirewallRatelimitResponseSingle = type FirewallApiResponseSingle = never & { result?: FirewallRateLimits
type FirewallRateLimits = FirewallRatelimit & {}
; }
& { result?: { id?: FirewallId

The unique identifier of the rate limit.

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