Swift / MongoDB Atlas / Defer Project Maintenance
        
        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.
    // {
    //   "dayOfWeek": 1,
    //   "hourOfDay": 12,
    //   "autoDeferOnceEnabled": true
    // }
    let json = CkoJsonObject()!
    json.updateInt("dayOfWeek", value: 1)
    json.updateInt("hourOfDay", value: 12)
    json.updateBool("autoDeferOnceEnabled", value: true)
    let resp = CkoHttpResponse()!
    success = http.httpJson("POST", url: "https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/maintenanceWindow/defer", json: json, contentType: "application/json", response: resp)
    if success == false {
        print("\(http.lastErrorText!)")
        return
    }
    print("\(resp.statusCode.intValue)")
    print("\(resp.bodyStr!)")
}
        Curl Command
        curl -X POST
	--digest -u 'username:password'
	-d '{
    "dayOfWeek": 1,
    "hourOfDay": 12,
    "autoDeferOnceEnabled": true
}'
https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/maintenanceWindow/defer
        Postman Collection Item JSON
        {
  "name": "Defer Project Maintenance",
  "request": {
    "method": "POST",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"dayOfWeek\": 1,\n    \"hourOfDay\": 12,\n    \"autoDeferOnceEnabled\": true\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{base_url}}/api/atlas/{{version}}/groups/{{ProjectID}}/maintenanceWindow/defer",
      "host": [
        "{{base_url}}"
      ],
      "path": [
        "api",
        "atlas",
        "{{version}}",
        "groups",
        "{{ProjectID}}",
        "maintenanceWindow",
        "defer"
      ]
    },
    "description": "https://docs.atlas.mongodb.com/reference/api/maintenance-window-defer/"
  },
  "response": [
  ]
}