VBScript / MongoDB Atlas / Create Whitelist Entries for One Organization API Key
Back to Collection Items
Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
'Create a Unicode (utf-16) output text file.
Set outFile = fso.CreateTextFile("output.txt", True, True)
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.Http")
set http = CreateObject("Chilkat.Http")
http.DigestAuth = 1
http.Login = "username"
http.Password = "password"
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.StringBuilder")
set sbRequestBody = CreateObject("Chilkat.StringBuilder")
success = sbRequestBody.Append("[" & vbLf)
success = sbRequestBody.Append(" {" & vbLf)
success = sbRequestBody.Append(" ""ipAddress"": ""77.54.32.11\vbLf)
success = sbRequestBody.Append(" }" & vbLf)
success = sbRequestBody.Append("]")
' resp is a Chilkat.HttpResponse
Set resp = http.PTextSb("POST","https://domain.com/api/atlas/{{version}}/orgs/{{ORG-ID}}/apiKeys/{{API-KEY-ID}}/whitelist",sbRequestBody,"utf-8","application/text",0,0)
If (http.LastMethodSuccess = 0) Then
outFile.WriteLine(http.LastErrorText)
WScript.Quit
End If
outFile.WriteLine(resp.StatusCode)
outFile.WriteLine(resp.BodyStr)
outFile.Close
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": [
]
}