Chilkat Online Tools

PHP (Extension) / MongoDB Atlas / Get Database Access History by Cluster Name

Back to Collection Items

<?php

include("chilkat_9_5_0.php");

$http->put_DigestAuth(true);$http->put_Login('username');$http->put_Password('password');$success = $http->QuickGetSb('https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/dbAccessHistory/clusters/{{CLUSTER-NAME}}',$sbResponseBody);
?>

Curl Command

curl -X GET
	--digest -u 'username:password'
https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/dbAccessHistory/clusters/{{CLUSTER-NAME}}

Postman Collection Item JSON

{
  "name": "Get Database Access History by Cluster Name",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{base_url}}/api/atlas/{{version}}/groups/{{ProjectID}}/dbAccessHistory/clusters/{{CLUSTER-NAME}}",
      "host": [
        "{{base_url}}"
      ],
      "path": [
        "api",
        "atlas",
        "{{version}}",
        "groups",
        "{{ProjectID}}",
        "dbAccessHistory",
        "clusters",
        "{{CLUSTER-NAME}}"
      ]
    },
    "description": "https://docs.atlas.mongodb.com/reference/api/access-tracking-get-database-history-clustername/"
  },
  "response": [
  ]
}