Delphi (ActiveX) / MongoDB Atlas / Get All Clusters in All Projects
Back to Collection Items
var
begin
http.DigestAuth := 1;http.Login := 'username';http.Password := 'password';success := http.QuickGetSb('https://domain.com/api/atlas/{{version}}/clusters',sbResponseBody.ControlInterface);
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": [
]
}