Chilkat Online Tools

Objective-C / MongoDB Atlas / Create One Alert Configuration

Back to Collection Items

#import <CkoHttp.h>
#import <CkoJsonObject.h>
#import <CkoHttpResponse.h>

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

CkoHttp *http = [[CkoHttp alloc] init];
BOOL success;

http.DigestAuth = YES;
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": 60,
//       "roles": [
//         "GROUP_OWNER"
//       ],
//       "smsEnabled": false,
//       "typeName": "GROUP"
//     }
//   ],
//   "threshold": {
//     "operator": "LESS_THAN",
//     "threshold": 1,
//     "units": "HOURS"
//   },
//   "typeName": "REPLICA_SET"
// }

CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json UpdateString: @"eventTypeName" value: @"REPLICATION_OPLOG_WINDOW_RUNNING_OUT"];
[json UpdateBool: @"enabled" value: YES];
[json UpdateInt: @"notifications[0].delayMin" value: [NSNumber numberWithInt: 0]];
[json UpdateBool: @"notifications[0].emailEnabled" value: YES];
[json UpdateInt: @"notifications[0].intervalMin" value: [NSNumber numberWithInt: 60]];
[json UpdateString: @"notifications[0].roles[0]" value: @"GROUP_OWNER"];
[json UpdateBool: @"notifications[0].smsEnabled" value: NO];
[json UpdateString: @"notifications[0].typeName" value: @"GROUP"];
[json UpdateString: @"threshold.operator" value: @"LESS_THAN"];
[json UpdateInt: @"threshold.threshold" value: [NSNumber numberWithInt: 1]];
[json UpdateString: @"threshold.units" value: @"HOURS"];
[json UpdateString: @"typeName" value: @"REPLICA_SET"];

[http SetRequestHeader: @"Content-Type" value: @"application/json"];

CkoHttpResponse *resp = [http PostJson3: @"https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/alertConfigs" contentType: @"application/json" json: json];
if (http.LastMethodSuccess == NO) {
    NSLog(@"%@",http.LastErrorText);
    return;
}

NSLog(@"%d",[resp.StatusCode intValue]);
NSLog(@"%@",resp.BodyStr);

Curl Command

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

Postman Collection Item JSON

{
  "name": "Create One Alert Configuration",
  "request": {
    "method": "POST",
    "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\": 60,\n            \"roles\": [\n                \"GROUP_OWNER\"\n            ],\n            \"smsEnabled\": false,\n            \"typeName\": \"GROUP\"\n        }\n    ],\n    \"threshold\": {\n        \"operator\": \"LESS_THAN\",\n        \"threshold\": 1,\n        \"units\": \"HOURS\"\n    },\n    \"typeName\": \"REPLICA_SET\"\n}"
    },
    "url": {
      "raw": "{{base_url}}/api/atlas/{{version}}/groups/{{ProjectID}}/alertConfigs",
      "host": [
        "{{base_url}}"
      ],
      "path": [
        "api",
        "atlas",
        "{{version}}",
        "groups",
        "{{ProjectID}}",
        "alertConfigs"
      ]
    },
    "description": "https://docs.atlas.mongodb.com/reference/api/alert-configurations-get-all-configs/"
  },
  "response": [
  ]
}