Chilkat Online Tools

Objective-C / MongoDB Atlas / Create Whitelist Entries for One Organization API Key

Back to Collection Items

#import <CkoHttp.h>
#import <CkoStringBuilder.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";

CkoStringBuilder *sbRequestBody = [[CkoStringBuilder alloc] init];
[sbRequestBody Append: @"[\n"];
[sbRequestBody Append: @"    {\n"];
[sbRequestBody Append: @"        \"ipAddress\": \"77.54.32.11\"\n"];
[sbRequestBody Append: @"    }\n"];
[sbRequestBody Append: @"]"];

CkoHttpResponse *resp = [http PTextSb: @"POST" url: @"https://domain.com/api/atlas/{{version}}/orgs/{{ORG-ID}}/apiKeys/{{API-KEY-ID}}/whitelist" textData: sbRequestBody charset: @"utf-8" contentType: @"application/text" md5: NO gzip: NO];
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'
	-d '[
    {
        "ipAddress": "77.54.32.11"
    }
]'
https://domain.com/api/atlas/{{version}}/orgs/{{ORG-ID}}/apiKeys/{{API-KEY-ID}}/whitelist

Postman Collection Item JSON

{
  "name": "Create Whitelist Entries for One Organization API Key",
  "request": {
    "method": "POST",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "[\n    {\n        \"ipAddress\": \"77.54.32.11\"\n    }\n]",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{base_url}}/api/atlas/{{version}}/orgs/{{ORG-ID}}/apiKeys/{{API-KEY-ID}}/whitelist",
      "host": [
        "{{base_url}}"
      ],
      "path": [
        "api",
        "atlas",
        "{{version}}",
        "orgs",
        "{{ORG-ID}}",
        "apiKeys",
        "{{API-KEY-ID}}",
        "whitelist"
      ]
    },
    "description": "https://docs.atlas.mongodb.com/reference/api/apiKeys-org-whitelist-create/"
  },
  "response": [
  ]
}