unicodeC / MongoDB Atlas / Enable Managed Slow Operation Threshold
Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkHttpResponseW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkHttpResponseW resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_Create();
CkHttpW_putDigestAuth(http,TRUE);
CkHttpW_putLogin(http,L"username");
CkHttpW_putPassword(http,L"password");
resp = CkHttpW_QuickRequest(http,L"POST",L"https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/managedSlowMs/enable");
if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
return;
}
wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
CkHttpResponseW_Dispose(resp);
CkHttpW_Dispose(http);
}
Curl Command
curl -X POST
--digest -u 'username:password'
https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/managedSlowMs/enable
Postman Collection Item JSON
{
"name": "Enable Managed Slow Operation Threshold",
"request": {
"method": "POST",
"header": [
],
"url": {
"raw": "{{base_url}}/api/atlas/{{version}}/groups/{{ProjectID}}/managedSlowMs/enable",
"host": [
"{{base_url}}"
],
"path": [
"api",
"atlas",
"{{version}}",
"groups",
"{{ProjectID}}",
"managedSlowMs",
"enable"
]
},
"description": "https://docs.atlas.mongodb.com/reference/api/pa-managed-slow-ms-enable/"
},
"response": [
]
}