Skip to main content
POST
/
api
/
monitors
/
custom-monitors
/
v1
/
severity
BatchUpdateMonitorSeverity
curl --request POST \
  --url https://developer.synq.io/api/monitors/custom-monitors/v1/severity \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "severity": "SEVERITY_UNSPECIFIED"
}
'
{
  "updatedIds": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
ids
string<uuid>[]
Minimum array length: 1
severity
enum<string>
Available options:
SEVERITY_UNSPECIFIED,
SEVERITY_WARNING,
SEVERITY_ERROR,
SEVERITY_INFO

Response

200 - application/json

Success

updatedIds
string[]