Chilkat Online Tools

PureBasic / MeiliSearch v0.24 / Add or replace documents

Back to Collection Items

IncludeFile "CkJsonArray.pb"
IncludeFile "CkStringBuilder.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"
IncludeFile "CkJsonObject.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

    ; 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"
    ;   }
    ; ]

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

    CkJsonArray::ckAddObjectAt(jarr,-1)
    jsonObj_1.i = CkJsonArray::ckObjectAt(jarr,CkJsonArray::ckSize(jarr) - 1)
    CkJsonObject::ckUpdateInt(jsonObj_1,"id",2)
    CkJsonObject::ckUpdateString(jsonObj_1,"title","Pride and Prejudice")
    CkJsonObject::ckUpdateString(jsonObj_1,"author","Jane Austin")
    CkJsonObject::ckUpdateString(jsonObj_1,"genre","romance")
    CkJsonObject::ckUpdateNumber(jsonObj_1,"price","3.5")
    CkJsonObject::ckDispose(jsonObj_1)

    CkJsonArray::ckAddObjectAt(jarr,-1)
    jsonObj_1 = CkJsonArray::ckObjectAt(jarr,CkJsonArray::ckSize(jarr) - 1)
    CkJsonObject::ckUpdateInt(jsonObj_1,"id",456)
    CkJsonObject::ckUpdateString(jsonObj_1,"title","Le Petit Prince")
    CkJsonObject::ckUpdateString(jsonObj_1,"author","Antoine de Saint-Exupéry")
    CkJsonObject::ckUpdateString(jsonObj_1,"genre","adventure")
    CkJsonObject::ckUpdateNumber(jsonObj_1,"price","10.0")
    CkJsonObject::ckDispose(jsonObj_1)

    CkJsonArray::ckAddObjectAt(jarr,-1)
    jsonObj_1 = CkJsonArray::ckObjectAt(jarr,CkJsonArray::ckSize(jarr) - 1)
    CkJsonObject::ckUpdateInt(jsonObj_1,"id",1)
    CkJsonObject::ckUpdateString(jsonObj_1,"title","Alice In Wonderland")
    CkJsonObject::ckUpdateString(jsonObj_1,"author","Lewis Carroll")
    CkJsonObject::ckUpdateString(jsonObj_1,"genre","fantasy")
    CkJsonObject::ckUpdateNumber(jsonObj_1,"price","25.99")
    CkJsonObject::ckDispose(jsonObj_1)

    CkJsonArray::ckAddObjectAt(jarr,-1)
    jsonObj_1 = CkJsonArray::ckObjectAt(jarr,CkJsonArray::ckSize(jarr) - 1)
    CkJsonObject::ckUpdateInt(jsonObj_1,"id",1344)
    CkJsonObject::ckUpdateString(jsonObj_1,"title","The Hobbit")
    CkJsonObject::ckUpdateString(jsonObj_1,"author","J. R. R. Tolkien")
    CkJsonObject::ckUpdateString(jsonObj_1,"genre","fantasy")
    CkJsonObject::ckDispose(jsonObj_1)

    CkJsonArray::ckAddObjectAt(jarr,-1)
    jsonObj_1 = CkJsonArray::ckObjectAt(jarr,CkJsonArray::ckSize(jarr) - 1)
    CkJsonObject::ckUpdateInt(jsonObj_1,"id",4)
    CkJsonObject::ckUpdateString(jsonObj_1,"title","Harry Potter and the Half-Blood Prince")
    CkJsonObject::ckUpdateString(jsonObj_1,"author","J. K. Rowling")
    CkJsonObject::ckUpdateString(jsonObj_1,"genre","fantasy")
    CkJsonObject::ckDispose(jsonObj_1)

    CkJsonArray::ckAddObjectAt(jarr,-1)
    jsonObj_1 = CkJsonArray::ckObjectAt(jarr,CkJsonArray::ckSize(jarr) - 1)
    CkJsonObject::ckUpdateInt(jsonObj_1,"id",42)
    CkJsonObject::ckUpdateString(jsonObj_1,"title","The Hitchhiker's Guide to the Galaxy")
    CkJsonObject::ckUpdateString(jsonObj_1,"author","Douglas Adams")
    CkJsonObject::ckDispose(jsonObj_1)

    CkHttp::ckSetRequestHeader(http,"X-Meili-Api-Key","masterKey")

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

    CkJsonArray::ckEmitSb(jarr,sbRequestBody)

    resp.i = CkHttp::ckPTextSb(http,"POST","http://localhost:7700/indexes/indexUID/documents",sbRequestBody,"utf-8","application/json",0,0)
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkJsonArray::ckDispose(jarr)
        CkStringBuilder::ckDispose(sbRequestBody)
        ProcedureReturn
    EndIf

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



    CkHttp::ckDispose(http)
    CkJsonArray::ckDispose(jarr)
    CkStringBuilder::ckDispose(sbRequestBody)


    ProcedureReturn
EndProcedure

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