unicodeC / MongoDB Atlas / Create an Online Archive
Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkJsonObjectW json;
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");
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "dbName": "people",
// "collName": "employees",
// "partitionFields": [
// {
// "fieldName": "firstName",
// "order": 0
// },
// {
// "fieldName": "lastName",
// "order": 1
// }
// ],
// "criteria": {
// "type": "DATE",
// "dateField": "created",
// "dateFormat": "ISODATE",
// "expireAfterDays": 5
// }
// }
json = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(json,L"dbName",L"people");
CkJsonObjectW_UpdateString(json,L"collName",L"employees");
CkJsonObjectW_UpdateString(json,L"partitionFields[0].fieldName",L"firstName");
CkJsonObjectW_UpdateInt(json,L"partitionFields[0].order",0);
CkJsonObjectW_UpdateString(json,L"partitionFields[1].fieldName",L"lastName");
CkJsonObjectW_UpdateInt(json,L"partitionFields[1].order",1);
CkJsonObjectW_UpdateString(json,L"criteria.type",L"DATE");
CkJsonObjectW_UpdateString(json,L"criteria.dateField",L"created");
CkJsonObjectW_UpdateString(json,L"criteria.dateFormat",L"ISODATE");
CkJsonObjectW_UpdateInt(json,L"criteria.expireAfterDays",5);
resp = CkHttpW_PostJson3(http,L"https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/clusters/{{CLUSTER-NAME}}/onlineArchives",L"application/json",json);
if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
return;
}
wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
CkHttpResponseW_Dispose(resp);
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
}
Curl Command
curl -X POST
--digest -u 'username:password'
-d '{
"dbName": "people",
"collName": "employees",
"partitionFields": [
{
"fieldName": "firstName",
"order": 0
},
{
"fieldName": "lastName",
"order": 1
}
],
"criteria": {
"type": "DATE",
"dateField": "created",
"dateFormat": "ISODATE",
"expireAfterDays": 5
}
}'
https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/clusters/{{CLUSTER-NAME}}/onlineArchives
Postman Collection Item JSON
{
"name": "Create an Online Archive",
"request": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"dbName\": \"people\",\n \"collName\": \"employees\",\n \"partitionFields\": [\n {\n \"fieldName\": \"firstName\",\n \"order\": 0\n },\n {\n \"fieldName\": \"lastName\",\n \"order\": 1\n }\n ],\n \"criteria\": {\n \"type\": \"DATE\",\n \"dateField\": \"created\",\n \"dateFormat\": \"ISODATE\",\n \"expireAfterDays\": 5\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/api/atlas/{{version}}/groups/{{ProjectID}}/clusters/{{CLUSTER-NAME}}/onlineArchives",
"host": [
"{{base_url}}"
],
"path": [
"api",
"atlas",
"{{version}}",
"groups",
"{{ProjectID}}",
"clusters",
"{{CLUSTER-NAME}}",
"onlineArchives"
]
},
"description": "https://docs.atlas.mongodb.com/reference/api/online-archive-create-one/#std-label-api-online-archive-create-one"
},
"response": [
]
}