Search + K

Command Palette

Search for a command to run...

Sign In

Delete a schema

Deprecated
DELETE /zones/{zone_id}/api_gateway/user_schemas/{schema_id}
Copy endpoint
https://api.cloudflare.com/client/v4

Parameters

path Path Parameters

Name Type
zone_id required
type ApiShieldSchemasIdentifier = type ApiShieldIdentifier = string & string
schema_id required

Identifier for the schema-ID

string

Responses

200 application/json

Delete a schema response

type ApiShieldApiResponseSingle = interface ApiShieldApiResponseCommon {
errors: ApiShieldMessages
type ApiShieldMessages = {
code: number;
documentation_url?: string;
message: string;
source?: { pointer?: string; };
}
[]
;
messages: ApiShieldMessages
type ApiShieldMessages = {
code: number;
documentation_url?: string;
message: string;
source?: { pointer?: string; };
}
[]
;
success: true;
}
& {}

Client Errors

4XX application/json

Delete a schema response failure

interface ApiShieldApiResponseCommonFailure {
errors: ApiShieldMessages
type ApiShieldMessages = {
code: number;
documentation_url?: string;
message: string;
source?: { pointer?: string; };
}
[]
;
messages: ApiShieldMessages
type ApiShieldMessages = {
code: number;
documentation_url?: string;
message: string;
source?: { pointer?: string; };
}
[]
;
result: null;
success: false;
}