Chilkat Online Tools

PureBasic / MongoDB Atlas / Create One Alert Configuration

Back to Collection Items

IncludeFile "CkJsonObject.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"

Procedure ChilkatExample()

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

    http.i = CkHttp::ckCreate()
    If http.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success.i

    CkHttp::setCkDigestAuth(http, 1)
    CkHttp::setCkLogin(http, "username")
    CkHttp::setCkPassword(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": 60,
    ;       "roles": [
    ;         "GROUP_OWNER"
    ;       ],
    ;       "smsEnabled": false,
    ;       "typeName": "GROUP"
    ;     }
    ;   ],
    ;   "threshold": {
    ;     "operator": "LESS_THAN",
    ;     "threshold": 1,
    ;     "units": "HOURS"
    ;   },
    ;   "typeName": "REPLICA_SET"
    ; }

    json.i = CkJsonObject::ckCreate()
    If json.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckUpdateString(json,"eventTypeName","REPLICATION_OPLOG_WINDOW_RUNNING_OUT")
    CkJsonObject::ckUpdateBool(json,"enabled",1)
    CkJsonObject::ckUpdateInt(json,"notifications[0].delayMin",0)
    CkJsonObject::ckUpdateBool(json,"notifications[0].emailEnabled",1)
    CkJsonObject::ckUpdateInt(json,"notifications[0].intervalMin",60)
    CkJsonObject::ckUpdateString(json,"notifications[0].roles[0]","GROUP_OWNER")
    CkJsonObject::ckUpdateBool(json,"notifications[0].smsEnabled",0)
    CkJsonObject::ckUpdateString(json,"notifications[0].typeName","GROUP")
    CkJsonObject::ckUpdateString(json,"threshold.operator","LESS_THAN")
    CkJsonObject::ckUpdateInt(json,"threshold.threshold",1)
    CkJsonObject::ckUpdateString(json,"threshold.units","HOURS")
    CkJsonObject::ckUpdateString(json,"typeName","REPLICA_SET")

    CkHttp::ckSetRequestHeader(http,"Content-Type","application/json")

    resp.i = CkHttp::ckPostJson3(http,"https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/alertConfigs","application/json",json)
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(json)
        ProcedureReturn
    EndIf

    Debug Str(CkHttpResponse::ckStatusCode(resp))
    Debug CkHttpResponse::ckBodyStr(resp)
    CkHttpResponse::ckDispose(resp)



    CkHttp::ckDispose(http)
    CkJsonObject::ckDispose(json)


    ProcedureReturn
EndProcedure

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