unicodeCpp / MongoDB Atlas / Modify One Advanced Cluster
Back to Collection Items
#include <CkHttpW.h>
#include <CkJsonObjectW.h>
#include <CkStringBuilderW.h>
#include <CkHttpResponseW.h>
void ChilkatSample(void)
{
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttpW http;
bool success;
http.put_DigestAuth(true);
http.put_Login(L"username");
http.put_Password(L"password");
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "biConnector": {
// "enabled": "true",
// "readPreference": "analytics"
// }
// }
CkJsonObjectW json;
json.UpdateString(L"biConnector.enabled",L"true");
json.UpdateString(L"biConnector.readPreference",L"analytics");
http.SetRequestHeader(L"Content-Type",L"application/json");
CkStringBuilderW sbRequestBody;
json.EmitSb(sbRequestBody);
CkHttpResponseW *resp = http.PTextSb(L"PATCH",L"https://domain.com/api/atlas/v1.5/groups/{{ProjectID}}/clusters/{{CLUSTER-NAME}}",sbRequestBody,L"utf-8",L"application/json",false,false);
if (http.get_LastMethodSuccess() == false) {
wprintf(L"%s\n",http.lastErrorText());
return;
}
wprintf(L"%d\n",resp->get_StatusCode());
wprintf(L"%s\n",resp->bodyStr());
delete resp;
}
Curl Command
curl -X PATCH
--digest -u 'username:password'
-H "Content-Type: application/json"
-d '{
"biConnector": {
"enabled": "true",
"readPreference": "analytics"
}
}'
https://domain.com/api/atlas/v1.5/groups/{{ProjectID}}/clusters/{{CLUSTER-NAME}}
Postman Collection Item JSON
{
"name": "Modify One Advanced Cluster",
"request": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"biConnector\": {\n \"enabled\": \"true\",\n \"readPreference\": \"analytics\"\n }\n}"
},
"url": {
"raw": "{{base_url}}/api/atlas/v1.5/groups/{{ProjectID}}/clusters/{{CLUSTER-NAME}}",
"host": [
"{{base_url}}"
],
"path": [
"api",
"atlas",
"v1.5",
"groups",
"{{ProjectID}}",
"clusters",
"{{CLUSTER-NAME}}"
]
},
"description": "https://docs.atlas.mongodb.com/reference/api/cluster-advanced/modify-one-cluster-advanced/"
},
"response": [
]
}