unicodeCpp / MeiliSearch v0.24 / Add or replace documents
Back to Collection Items
#include <CkHttpW.h>
#include <CkJsonArrayW.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;
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// [
// {
// "id": 2,
// "title": "Pride and Prejudice",
// "author": "Jane Austin",
// "genre": "romance",
// "price": 3.5
// },
// {
// "id": 456,
// "title": "Le Petit Prince",
// "author": "Antoine de Saint-Exupéry",
// "genre": "adventure",
// "price": 10.0
// },
// {
// "id": 1,
// "title": "Alice In Wonderland",
// "author": "Lewis Carroll",
// "genre": "fantasy",
// "price": 25.99
// },
// {
// "id": 1344,
// "title": "The Hobbit",
// "author": "J. R. R. Tolkien",
// "genre": "fantasy"
// },
// {
// "id": 4,
// "title": "Harry Potter and the Half-Blood Prince",
// "author": "J. K. Rowling",
// "genre": "fantasy"
// },
// {
// "id": 42,
// "title": "The Hitchhiker's Guide to the Galaxy",
// "author": "Douglas Adams"
// }
// ]
CkJsonArrayW jarr;
jarr.AddObjectAt(-1);
CkJsonObjectW *jsonObj_1 = jarr.ObjectAt(jarr.get_Size() - 1);
jsonObj_1->UpdateInt(L"id",2);
jsonObj_1->UpdateString(L"title",L"Pride and Prejudice");
jsonObj_1->UpdateString(L"author",L"Jane Austin");
jsonObj_1->UpdateString(L"genre",L"romance");
jsonObj_1->UpdateNumber(L"price",L"3.5");
delete jsonObj_1;
jarr.AddObjectAt(-1);
jsonObj_1 = jarr.ObjectAt(jarr.get_Size() - 1);
jsonObj_1->UpdateInt(L"id",456);
jsonObj_1->UpdateString(L"title",L"Le Petit Prince");
jsonObj_1->UpdateString(L"author",L"Antoine de Saint-Exupéry");
jsonObj_1->UpdateString(L"genre",L"adventure");
jsonObj_1->UpdateNumber(L"price",L"10.0");
delete jsonObj_1;
jarr.AddObjectAt(-1);
jsonObj_1 = jarr.ObjectAt(jarr.get_Size() - 1);
jsonObj_1->UpdateInt(L"id",1);
jsonObj_1->UpdateString(L"title",L"Alice In Wonderland");
jsonObj_1->UpdateString(L"author",L"Lewis Carroll");
jsonObj_1->UpdateString(L"genre",L"fantasy");
jsonObj_1->UpdateNumber(L"price",L"25.99");
delete jsonObj_1;
jarr.AddObjectAt(-1);
jsonObj_1 = jarr.ObjectAt(jarr.get_Size() - 1);
jsonObj_1->UpdateInt(L"id",1344);
jsonObj_1->UpdateString(L"title",L"The Hobbit");
jsonObj_1->UpdateString(L"author",L"J. R. R. Tolkien");
jsonObj_1->UpdateString(L"genre",L"fantasy");
delete jsonObj_1;
jarr.AddObjectAt(-1);
jsonObj_1 = jarr.ObjectAt(jarr.get_Size() - 1);
jsonObj_1->UpdateInt(L"id",4);
jsonObj_1->UpdateString(L"title",L"Harry Potter and the Half-Blood Prince");
jsonObj_1->UpdateString(L"author",L"J. K. Rowling");
jsonObj_1->UpdateString(L"genre",L"fantasy");
delete jsonObj_1;
jarr.AddObjectAt(-1);
jsonObj_1 = jarr.ObjectAt(jarr.get_Size() - 1);
jsonObj_1->UpdateInt(L"id",42);
jsonObj_1->UpdateString(L"title",L"The Hitchhiker's Guide to the Galaxy");
jsonObj_1->UpdateString(L"author",L"Douglas Adams");
delete jsonObj_1;
http.SetRequestHeader(L"X-Meili-Api-Key",L"masterKey");
CkStringBuilderW sbRequestBody;
jarr.EmitSb(sbRequestBody);
CkHttpResponseW *resp = http.PTextSb(L"POST",L"http://localhost:7700/indexes/indexUID/documents",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 POST
-H "X-Meili-Api-Key: masterKey"
-d '[
{ "id": 2, "title": "Pride and Prejudice", "author": "Jane Austin", "genre": "romance", "price": 3.5 },
{ "id": 456, "title": "Le Petit Prince", "author": "Antoine de Saint-Exupéry", "genre": "adventure" , "price": 10.0 },
{ "id": 1, "title": "Alice In Wonderland", "author": "Lewis Carroll", "genre": "fantasy", "price": 25.99 },
{ "id": 1344, "title": "The Hobbit", "author": "J. R. R. Tolkien", "genre": "fantasy" },
{ "id": 4, "title": "Harry Potter and the Half-Blood Prince", "author": "J. K. Rowling", "genre": "fantasy" },
{ "id": 42, "title": "The Hitchhiker\'s Guide to the Galaxy", "author": "Douglas Adams" }
]'
http://localhost:7700/indexes/indexUID/documents
Postman Collection Item JSON
{
"name": "Add or replace documents",
"request": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "[\n { \"id\": 2, \"title\": \"Pride and Prejudice\", \"author\": \"Jane Austin\", \"genre\": \"romance\", \"price\": 3.5 },\n { \"id\": 456, \"title\": \"Le Petit Prince\", \"author\": \"Antoine de Saint-Exupéry\", \"genre\": \"adventure\" , \"price\": 10.0 },\n { \"id\": 1, \"title\": \"Alice In Wonderland\", \"author\": \"Lewis Carroll\", \"genre\": \"fantasy\", \"price\": 25.99 },\n { \"id\": 1344, \"title\": \"The Hobbit\", \"author\": \"J. R. R. Tolkien\", \"genre\": \"fantasy\" },\n { \"id\": 4, \"title\": \"Harry Potter and the Half-Blood Prince\", \"author\": \"J. K. Rowling\", \"genre\": \"fantasy\" },\n { \"id\": 42, \"title\": \"The Hitchhiker's Guide to the Galaxy\", \"author\": \"Douglas Adams\" }\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/indexes/{{indexUID}}/documents",
"host": [
"{{url}}"
],
"path": [
"indexes",
"{{indexUID}}",
"documents"
],
"query": [
{
"key": "primaryKey",
"value": "id",
"disabled": true
}
]
}
},
"response": [
]
}