phpExt / MongoDB Atlas / Create Access List Entries for One Organization API Key
Back to Collection Items
<?php
include("chilkat.php");
// Use "chilkat_9_5_0.php" for versions of Chilkat < 10.0.0
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
$http = new CkHttp();
$http->put_DigestAuth(true);
$http->put_Login('username');
$http->put_Password('password');
$sbRequestBody = new CkStringBuilder();
$sbRequestBody->Append('[\n');
$sbRequestBody->Append(' {\n');
$sbRequestBody->Append(' \'ipAddress\': \'77.54.32.11\'\n');
$sbRequestBody->Append(' }\n');
$sbRequestBody->Append(']');
// resp is a CkHttpResponse
$resp = $http->PTextSb('POST','https://domain.com/api/atlas/{{version}}/orgs/{{ORG-ID}}/apiKeys/{{API-KEY-ID}}/accessList',$sbRequestBody,'utf-8','application/text',false,false);
if ($http->get_LastMethodSuccess() == false) {
print $http->lastErrorText() . "\n";
exit;
}
print $resp->get_StatusCode() . "\n";
print $resp->bodyStr() . "\n";
?>
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}}/accessList
Postman Collection Item JSON
{
"name": "Create Access List 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}}/accessList",
"host": [
"{{base_url}}"
],
"path": [
"api",
"atlas",
"{{version}}",
"orgs",
"{{ORG-ID}}",
"apiKeys",
"{{API-KEY-ID}}",
"accessList"
]
},
"description": "https://docs.atlas.mongodb.com/reference/api/api-access-list/create-api-access-entries/"
},
"response": [
]
}