C / MongoDB Atlas / Add Entries to Project IP Access List
Back to Collection Items
#include <C_CkHttp.h>
#include <C_CkJsonArray.h>
#include <C_CkJsonObject.h>
#include <C_CkStringBuilder.h>
#include <C_CkHttpResponse.h>
void ChilkatSample(void)
{
HCkHttp http;
BOOL success;
HCkJsonArray jarr;
HCkJsonObject jsonObj_1;
HCkStringBuilder sbRequestBody;
HCkHttpResponse resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttp_Create();
CkHttp_putDigestAuth(http,TRUE);
CkHttp_putLogin(http,"username");
CkHttp_putPassword(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.
// [
// {
// "ipAddress": "192.0.2.15",
// "comment": "IP address for Application Server A"
// },
// {
// "cidrBlock": "203.0.113.0/24",
// "comment": "CIDR block for Application Server B - D"
// }
// ]
jarr = CkJsonArray_Create();
CkJsonArray_AddObjectAt(jarr,-1);
jsonObj_1 = CkJsonArray_ObjectAt(jarr,CkJsonArray_getSize(jarr) - 1);
CkJsonObject_UpdateString(jsonObj_1,"ipAddress","192.0.2.15");
CkJsonObject_UpdateString(jsonObj_1,"comment","IP address for Application Server A");
CkJsonObject_Dispose(jsonObj_1);
CkJsonArray_AddObjectAt(jarr,-1);
jsonObj_1 = CkJsonArray_ObjectAt(jarr,CkJsonArray_getSize(jarr) - 1);
CkJsonObject_UpdateString(jsonObj_1,"cidrBlock","203.0.113.0/24");
CkJsonObject_UpdateString(jsonObj_1,"comment","CIDR block for Application Server B - D");
CkJsonObject_Dispose(jsonObj_1);
sbRequestBody = CkStringBuilder_Create();
CkJsonArray_EmitSb(jarr,sbRequestBody);
resp = CkHttp_PTextSb(http,"POST","https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/accessList/",sbRequestBody,"utf-8","application/json",FALSE,FALSE);
if (CkHttp_getLastMethodSuccess(http) == FALSE) {
printf("%s\n",CkHttp_lastErrorText(http));
CkHttp_Dispose(http);
CkJsonArray_Dispose(jarr);
CkStringBuilder_Dispose(sbRequestBody);
return;
}
printf("%d\n",CkHttpResponse_getStatusCode(resp));
printf("%s\n",CkHttpResponse_bodyStr(resp));
CkHttpResponse_Dispose(resp);
CkHttp_Dispose(http);
CkJsonArray_Dispose(jarr);
CkStringBuilder_Dispose(sbRequestBody);
}
Curl Command
curl -X POST
--digest -u 'username:password'
-d '[
{
"ipAddress" : "192.0.2.15",
"comment" : "IP address for Application Server A"
},
{
"cidrBlock" : "203.0.113.0/24",
"comment" : "CIDR block for Application Server B - D"
}
]'
https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/accessList/
Postman Collection Item JSON
{
"name": "Add Entries to Project IP Access List",
"request": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": " [\n {\n \"ipAddress\" : \"192.0.2.15\",\n \"comment\" : \"IP address for Application Server A\"\n },\n {\n \"cidrBlock\" : \"203.0.113.0/24\",\n \"comment\" : \"CIDR block for Application Server B - D\"\n }\n ]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/api/atlas/{{version}}/groups/{{ProjectID}}/accessList/",
"host": [
"{{base_url}}"
],
"path": [
"api",
"atlas",
"{{version}}",
"groups",
"{{ProjectID}}",
"accessList",
""
]
},
"description": "https://docs.atlas.mongodb.com/reference/api/ip-access-list/add-entries-to-access-list/\n\nCreate the access list entry"
},
"response": [
]
}