Skip to content

Update alertmanager global settings API Reference

PUT
/tenants/{tenant}/alertmanager/global
curl --request PUT \
--url https://api.kupe.cloud/api/v1/tenants/acme/alertmanager/global \
--header 'Authorization: <Authorization>' \
--header 'Content-Type: application/json' \
--data '{ "resolve_timeout": "5m", "slack_api_url": "example", "smtp_from": "alerts@acme.com", "smtp_smarthost": "smtp.example.com:587" }'
tenant
required
string

Tenant name

If-Match
string

Wrapper ETag

Global configuration

Media type application/json
object
resolve_timeout
string
Example
5m
slack_api_url
string
smtp_from
string
Example
alerts@acme.com
smtp_smarthost
string
Example
smtp.example.com:587

Global section after update

Media type application/json
object
resolve_timeout
string
slack_api_url
string
smtp_from
string
smtp_smarthost
string
Example
{
"resolve_timeout": "5m",
"smtp_from": "alerts@acme.com",
"smtp_smarthost": "smtp.example.com:587"
}