Chilkat Online Tools

Delphi (DLL) / MongoDB Atlas / Get All Clusters in All Projects

Back to Collection Items

var

begin
CkHttp_putDigestAuth(http,True);CkHttp_putLogin(http,'username');CkHttp_putPassword(http,'password');success := CkHttp_QuickGetSb(http,'https://domain.com/api/atlas/{{version}}/clusters',sbResponseBody);


Curl Command

curl -X GET
	--digest -u 'username:password'
	-H "Content-Type: application/json"
https://domain.com/api/atlas/{{version}}/clusters

Postman Collection Item JSON

{
  "name": "Get All Clusters in All Projects",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json",
        "type": "text"
      }
    ],
    "url": {
      "raw": "{{base_url}}/api/atlas/{{version}}/clusters",
      "host": [
        "{{base_url}}"
      ],
      "path": [
        "api",
        "atlas",
        "{{version}}",
        "clusters"
      ]
    },
    "description": "https://docs.atlas.mongodb.com/reference/api/clusters-get-all/"
  },
  "response": [
  ]
}