TCL / MongoDB Atlas / Create Whitelist Entries for One Organization API Key
Back to Collection Items
load ./chilkat.dll
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
set http [new_CkHttp]
CkHttp_put_DigestAuth $http 1
CkHttp_put_Login $http "username"
CkHttp_put_Password $http "password"
set sbRequestBody [new_CkStringBuilder]
CkStringBuilder_Append $sbRequestBody "[\n"
CkStringBuilder_Append $sbRequestBody " {\n"
CkStringBuilder_Append $sbRequestBody " \"ipAddress\": \"77.54.32.11\"\n"
CkStringBuilder_Append $sbRequestBody " }\n"
CkStringBuilder_Append $sbRequestBody "]"
# resp is a CkHttpResponse
set resp [CkHttp_PTextSb $http "POST" "https://domain.com/api/atlas/{{version}}/orgs/{{ORG-ID}}/apiKeys/{{API-KEY-ID}}/whitelist" $sbRequestBody "utf-8" "application/text" 0 0]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
puts [CkHttp_lastErrorText $http]
delete_CkHttp $http
delete_CkStringBuilder $sbRequestBody
exit
}
puts [CkHttpResponse_get_StatusCode $resp]
puts [CkHttpResponse_bodyStr $resp]
delete_CkHttpResponse $resp
delete_CkHttp $http
delete_CkStringBuilder $sbRequestBody
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": [
]
}