Chilkat Online Tools

Perl / MongoDB Atlas / Get Suggested Indexes

Back to Collection Items

use chilkat();

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

$http = chilkat::CkHttp->new();

$http->put_DigestAuth(1);
$http->put_Login("username");
$http->put_Password("password");

$queryParams = chilkat::CkJsonObject->new();
$queryParams->UpdateString("namespaces","sample_Mflix.movies");

# resp is a HttpResponse
$resp = $http->QuickRequestParams("GET","https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/processes/{{PROCESS-HOST}}:{{PROCESS-PORT}}/performanceAdvisor/suggestedIndexes",$queryParams);
if ($http->get_LastMethodSuccess() == 0) {
    print $http->lastErrorText() . "\r\n";
    exit;
}

print $resp->get_StatusCode() . "\r\n";
print $resp->bodyStr() . "\r\n";

Curl Command

curl -G -d "namespaces=sample_Mflix.movies"
	--digest -u 'username:password'
https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/processes/{{PROCESS-HOST}}:{{PROCESS-PORT}}/performanceAdvisor/suggestedIndexes

Postman Collection Item JSON

{
  "name": "Get Suggested Indexes",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{base_url}}/api/atlas/{{version}}/groups/{{ProjectID}}/processes/{{PROCESS-HOST}}:{{PROCESS-PORT}}/performanceAdvisor/suggestedIndexes?namespaces=sample_Mflix.movies",
      "host": [
        "{{base_url}}"
      ],
      "path": [
        "api",
        "atlas",
        "{{version}}",
        "groups",
        "{{ProjectID}}",
        "processes",
        "{{PROCESS-HOST}}:{{PROCESS-PORT}}",
        "performanceAdvisor",
        "suggestedIndexes"
      ],
      "query": [
        {
          "key": "namespaces",
          "value": "sample_Mflix.movies"
        }
      ]
    },
    "description": "https://docs.atlas.mongodb.com/reference/api/pa-suggested-indexes-get-all/"
  },
  "response": [
  ]
}