Chilkat Online Tools

Python / MongoDB Atlas / Get Database Access History for a Cluster by Hostname

Back to Collection Items

import sys
import chilkat2

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

http = chilkat2.Http()

http.DigestAuth = True
http.Login = "username"
http.Password = "password"

sbResponseBody = chilkat2.StringBuilder()
success = http.QuickGetSb("https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/dbAccessHistory/processes/{{HOSTNAME}}",sbResponseBody)
if (success == False):
    print(http.LastErrorText)
    sys.exit()

print("Response status code = " + str(http.LastStatus))
print(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": [
  ]
}