Chilkat Online Tools

TCL / MongoDB Atlas / Update One Alert Configuration

Back to Collection Items

load ./chilkat.dll

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

set http [new_CkHttp]

CkHttp_put_DigestAuth $http 1
CkHttp_put_Login $http "username"
CkHttp_put_Password $http "password"

# Use this online tool to generate code from sample JSON: Generate Code to Create JSON

# The following JSON is sent in the request body.

# {
#   "eventTypeName": "REPLICATION_OPLOG_WINDOW_RUNNING_OUT",
#   "enabled": true,
#   "notifications": [
#     {
#       "delayMin": 0,
#       "emailEnabled": true,
#       "intervalMin": 15,
#       "roles": [
#         "GROUP_OWNER"
#       ],
#       "smsEnabled": false,
#       "typeName": "GROUP"
#     }
#   ],
#   "threshold": {
#     "operator": "LESS_THAN",
#     "threshold": 1
#   },
#   "typeName": "REPLICA_SET"
# }

set json [new_CkJsonObject]

CkJsonObject_UpdateString $json "eventTypeName" "REPLICATION_OPLOG_WINDOW_RUNNING_OUT"
CkJsonObject_UpdateBool $json "enabled" 1
CkJsonObject_UpdateInt $json "notifications[0].delayMin" 0
CkJsonObject_UpdateBool $json "notifications[0].emailEnabled" 1
CkJsonObject_UpdateInt $json "notifications[0].intervalMin" 15
CkJsonObject_UpdateString $json "notifications[0].roles[0]" "GROUP_OWNER"
CkJsonObject_UpdateBool $json "notifications[0].smsEnabled" 0
CkJsonObject_UpdateString $json "notifications[0].typeName" "GROUP"
CkJsonObject_UpdateString $json "threshold.operator" "LESS_THAN"
CkJsonObject_UpdateInt $json "threshold.threshold" 1
CkJsonObject_UpdateString $json "typeName" "REPLICA_SET"

CkHttp_SetRequestHeader $http "Content-Type" "application/json"

set sbRequestBody [new_CkStringBuilder]

CkJsonObject_EmitSb $json $sbRequestBody

# resp is a CkHttpResponse
set resp [CkHttp_PTextSb $http "PUT" "https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/alertConfigs/{{ALERT-CONFIG-ID}}" $sbRequestBody "utf-8" "application/json" 0 0]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkJsonObject $json
    delete_CkStringBuilder $sbRequestBody
    exit
}

puts [CkHttpResponse_get_StatusCode $resp]
puts [CkHttpResponse_bodyStr $resp]
delete_CkHttpResponse $resp


delete_CkHttp $http
delete_CkJsonObject $json
delete_CkStringBuilder $sbRequestBody

Curl Command

curl -X PUT
	--digest -u 'username:password'
	-H "Content-Type: application/json"
	-d '{
    "eventTypeName": "REPLICATION_OPLOG_WINDOW_RUNNING_OUT",
    "enabled": true,
    "notifications": [
        {
            "delayMin": 0,
            "emailEnabled": true,
            "intervalMin": 15,
            "roles": [
                "GROUP_OWNER"
            ],
            "smsEnabled": false,
            "typeName": "GROUP"
        }
    ],
    "threshold": {
        "operator": "LESS_THAN",
        "threshold": 1
    },
    "typeName": "REPLICA_SET"
}'
https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/alertConfigs/{{ALERT-CONFIG-ID}}

Postman Collection Item JSON

{
  "name": "Update One Alert Configuration",
  "request": {
    "method": "PUT",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"eventTypeName\": \"REPLICATION_OPLOG_WINDOW_RUNNING_OUT\",\n    \"enabled\": true,\n    \"notifications\": [\n        {\n            \"delayMin\": 0,\n            \"emailEnabled\": true,\n            \"intervalMin\": 15,\n            \"roles\": [\n                \"GROUP_OWNER\"\n            ],\n            \"smsEnabled\": false,\n            \"typeName\": \"GROUP\"\n        }\n    ],\n    \"threshold\": {\n        \"operator\": \"LESS_THAN\",\n        \"threshold\": 1\n    },\n    \"typeName\": \"REPLICA_SET\"\n}"
    },
    "url": {
      "raw": "{{base_url}}/api/atlas/{{version}}/groups/{{ProjectID}}/alertConfigs/{{ALERT-CONFIG-ID}}",
      "host": [
        "{{base_url}}"
      ],
      "path": [
        "api",
        "atlas",
        "{{version}}",
        "groups",
        "{{ProjectID}}",
        "alertConfigs",
        "{{ALERT-CONFIG-ID}}"
      ]
    },
    "description": "https://docs.atlas.mongodb.com/reference/api/alert-configurations-update-config/"
  },
  "response": [
  ]
}