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

client = Gcore(
    api_key="My API Key",
)
waap_insight_silence = client.waap.domains.insight_silences.create(
    domain_id=1,
    author="author",
    comment="comment",
    insight_type="26f1klzn5713-56bincal4ca-60zz1k91s4",
    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

Required range: x > 0

Body

application/json
insight_type
string
required

The slug of the insight type

Maximum length: 64
labels
object
required

A hash table of label names and values that apply to the insight silence

comment
string
required

A comment explaining the reason for the silence

Maximum length: 180
author
string
required

The author of the silence

Maximum length: 180
expire_at
string<date-time> | null

The date and time the silence expires in ISO 8601 format

Response

Successful Response

id
string<uuid>
required

A generated unique identifier for the silence

insight_type
string
required

The slug of the insight type

labels
object
required

A hash table of label names and values that apply to the insight silence

comment
string
required

A comment explaining the reason for the silence

author
string
required

The author of the silence

expire_at
string<date-time> | null
required

The date and time the silence expires in ISO 8601 format