Powershell / MongoDB Atlas / Get Database Access History for a Cluster by Hostname
Back to Collection Items
Add-Type -Path "C:\chilkat\ChilkatDotNet47-x64\ChilkatDotNet47.dll"
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
$http = New-Object Chilkat.Http
$http.DigestAuth = $true
$http.Login = "username"
$http.Password = "password"
$sbResponseBody = New-Object Chilkat.StringBuilder
$success = $http.QuickGetSb("https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/dbAccessHistory/processes/{{HOSTNAME}}",$sbResponseBody)
if ($success -eq $false) {
$($http.LastErrorText)
exit
}
$("Response status code = " + $http.LastStatus)
$($sbResponseBody.GetAsString())
Curl Command
curl -X GET
--digest -u 'username:password'
https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/dbAccessHistory/processes/{{HOSTNAME}}
Postman Collection Item JSON
{
"name": "Get Database Access History for a Cluster by Hostname",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{base_url}}/api/atlas/{{version}}/groups/{{ProjectID}}/dbAccessHistory/processes/{{HOSTNAME}}",
"host": [
"{{base_url}}"
],
"path": [
"api",
"atlas",
"{{version}}",
"groups",
"{{ProjectID}}",
"dbAccessHistory",
"processes",
"{{HOSTNAME}}"
]
},
"description": "https://docs.atlas.mongodb.com/reference/api/access-tracking-get-database-history-clustername/"
},
"response": [
]
}