C++ / MongoDB Atlas / Get Suggested Indexes
Back to Collection Items
#include <CkHttp.h>
#include <CkJsonObject.h>
#include <CkHttpResponse.h>
void ChilkatSample(void)
{
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http;
bool success;
http.put_DigestAuth(true);
http.put_Login("username");
http.put_Password("password");
CkJsonObject queryParams;
queryParams.UpdateString("namespaces","sample_Mflix.movies");
CkHttpResponse *resp = http.QuickRequestParams("GET","https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/processes/{{PROCESS-HOST}}:{{PROCESS-PORT}}/performanceAdvisor/suggestedIndexes",queryParams);
if (http.get_LastMethodSuccess() == false) {
std::cout << http.lastErrorText() << "\r\n";
return;
}
std::cout << resp->get_StatusCode() << "\r\n";
std::cout << resp->bodyStr() << "\r\n";
delete resp;
}
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": [
]
}