POST
/
waap
/
v1
/
domains
/
{domain_id}
/
insight-silences
import os
from gcore import Gcore

client = Gcore(
    api_key=os.environ.get("GCORE_API_KEY"),  # This is the default and can be omitted
)
waap_insight_silence = client.waap.domains.insight_silences.create(
    domain_id=0,
    author="author",
    comment="comment",
    insight_type="insight_type",
    labels={
        "foo": "string"
    },
)
print(waap_insight_silence.id)
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "insight_type": "<string>",
  "labels": {},
  "comment": "<string>",
  "author": "<string>",
  "expire_at": "2023-11-07T05:31:56Z"
}

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

Body

application/json

Response

200
application/json

Successful Response

The response is of type object.