Swift3 / MongoDB Atlas / Update One Alert Configuration
Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
http.digestAuth = true
http.login = "username"
http.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"
// }
let json = CkoJsonObject()!
json.update("eventTypeName", value: "REPLICATION_OPLOG_WINDOW_RUNNING_OUT")
json.updateBool("enabled", value: true)
json.updateInt("notifications[0].delayMin", value: 0)
json.updateBool("notifications[0].emailEnabled", value: true)
json.updateInt("notifications[0].intervalMin", value: 15)
json.update("notifications[0].roles[0]", value: "GROUP_OWNER")
json.updateBool("notifications[0].smsEnabled", value: false)
json.update("notifications[0].typeName", value: "GROUP")
json.update("threshold.operator", value: "LESS_THAN")
json.updateInt("threshold.threshold", value: 1)
json.update("typeName", value: "REPLICA_SET")
http.setRequestHeader("Content-Type", value: "application/json")
let sbRequestBody = CkoStringBuilder()!
json.emitSb(sbRequestBody)
var resp: CkoHttpResponse? = http.pTextSb("PUT", url: "https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/alertConfigs/{{ALERT-CONFIG-ID}}", textData: sbRequestBody, charset: "utf-8", contentType: "application/json", md5: false, gzip: false)
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
print("\(resp!.statusCode.intValue)")
print("\(resp!.bodyStr!)")
resp = nil
}
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": [
]
}