Chilkat Online Tools

autoit / MongoDB Atlas / Update One Alert Configuration

Back to Collection Items

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

$oHttp = ObjCreate("Chilkat_9_5_0.Http")
Local $bSuccess

$oHttp.DigestAuth = True
$oHttp.Login = "username"
$oHttp.Password = "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"
; }

$oJson = ObjCreate("Chilkat_9_5_0.JsonObject")
$oJson.UpdateString("eventTypeName","REPLICATION_OPLOG_WINDOW_RUNNING_OUT")
$oJson.UpdateBool("enabled",True)
$oJson.UpdateInt("notifications[0].delayMin",0)
$oJson.UpdateBool("notifications[0].emailEnabled",True)
$oJson.UpdateInt("notifications[0].intervalMin",15)
$oJson.UpdateString("notifications[0].roles[0]","GROUP_OWNER")
$oJson.UpdateBool("notifications[0].smsEnabled",False)
$oJson.UpdateString("notifications[0].typeName","GROUP")
$oJson.UpdateString("threshold.operator","LESS_THAN")
$oJson.UpdateInt("threshold.threshold",1)
$oJson.UpdateString("typeName","REPLICA_SET")

$oHttp.SetRequestHeader "Content-Type","application/json"

$oSbRequestBody = ObjCreate("Chilkat_9_5_0.StringBuilder")
$oJson.EmitSb($oSbRequestBody)

Local $oResp = $oHttp.PTextSb("PUT","https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/alertConfigs/{{ALERT-CONFIG-ID}}",$oSbRequestBody,"utf-8","application/json",False,False)
If ($oHttp.LastMethodSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf

ConsoleWrite($oResp.StatusCode & @CRLF)
ConsoleWrite($oResp.BodyStr & @CRLF)

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": [
  ]
}