POST
/
waap
/
v1
/
domains
/
{domain_id}
/
custom-rules
/
bulk_delete
import os
from gcore import Gcore

client = Gcore(
    api_key=os.environ.get("GCORE_API_KEY"),  # This is the default and can be omitted
)
client.waap.domains.custom_rules.delete_multiple(
    domain_id=0,
    rule_ids=[0],
)
This response does not have an example.

Authorizations

APIKey
string
header
required

API key for authentication.

Path Parameters

domain_id
integer
required

The domain ID

Body

application/json

A request to delete a list of rules

Response

204

Successful Response