Chilkat Online Tools

Delphi (ActiveX) / MongoDB Atlas / Disable and Configure Encryption at Rest using Customer Key Management for One Project

Back to Collection Items

var

begin
http.DigestAuth := 1;http.Login := 'username';http.Password := 'password';json.UpdateBool('awsKms.enabled',0);json.EmitSb(sbRequestBody.ControlInterface);

Curl Command

curl -X PATCH
	--digest -u 'username:password'
	-d '{
    "awsKms": {
        "enabled": false
    }
}'
https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/encryptionAtRest

Postman Collection Item JSON

{
  "name": "Disable and Configure Encryption at Rest using Customer Key Management for One Project",
  "request": {
    "method": "PATCH",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"awsKms\": {\n        \"enabled\": false\n    }\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{base_url}}/api/atlas/{{version}}/groups/{{ProjectID}}/encryptionAtRest",
      "host": [
        "{{base_url}}"
      ],
      "path": [
        "api",
        "atlas",
        "{{version}}",
        "groups",
        "{{ProjectID}}",
        "encryptionAtRest"
      ]
    },
    "description": "https://docs.atlas.mongodb.com/reference/api/enable-configure-encryptionatrest/"
  },
  "response": [
  ]
}