DELETE
/
waap
/
v1
/
domains
/
{domain_id}
/
insight-silences
/
{silence_id}
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.insight_silences.delete(
    silence_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
    domain_id=0,
)
This response does not have an example.

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Path Parameters

domain_id
integer
required

The domain ID

silence_id
string
required

A generated unique identifier for the silence

Response

204

Successful Response