Chilkat Online Tools

PureBasic / MongoDB Atlas / Get Suggested Indexes

Back to Collection Items

IncludeFile "CkJsonObject.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"

Procedure ChilkatExample()

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

    http.i = CkHttp::ckCreate()
    If http.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success.i

    CkHttp::setCkDigestAuth(http, 1)
    CkHttp::setCkLogin(http, "username")
    CkHttp::setCkPassword(http, "password")

    queryParams.i = CkJsonObject::ckCreate()
    If queryParams.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckUpdateString(queryParams,"namespaces","sample_Mflix.movies")

    resp.i = CkHttp::ckQuickRequestParams(http,"GET","https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/processes/{{PROCESS-HOST}}:{{PROCESS-PORT}}/performanceAdvisor/suggestedIndexes",queryParams)
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(queryParams)
        ProcedureReturn
    EndIf

    Debug Str(CkHttpResponse::ckStatusCode(resp))
    Debug CkHttpResponse::ckBodyStr(resp)
    CkHttpResponse::ckDispose(resp)



    CkHttp::ckDispose(http)
    CkJsonObject::ckDispose(queryParams)


    ProcedureReturn
EndProcedure

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": [
  ]
}