Chilkat Online Tools

TCL / MeiliSearch v0.24 / Add or replace documents

Back to Collection Items

load ./chilkat.dll

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

set http [new_CkHttp]

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

set jarr [new_CkJsonArray]

CkJsonArray_AddObjectAt $jarr -1
# jsonObj_1 is a CkJsonObject
set jsonObj_1 [CkJsonArray_ObjectAt $jarr [expr [CkJsonArray_get_Size $jarr] - 1]]
CkJsonObject_UpdateInt $jsonObj_1 "id" 2
CkJsonObject_UpdateString $jsonObj_1 "title" "Pride and Prejudice"
CkJsonObject_UpdateString $jsonObj_1 "author" "Jane Austin"
CkJsonObject_UpdateString $jsonObj_1 "genre" "romance"
CkJsonObject_UpdateNumber $jsonObj_1 "price" "3.5"
delete_CkJsonObject $jsonObj_1

CkJsonArray_AddObjectAt $jarr -1
set jsonObj_1 [CkJsonArray_ObjectAt $jarr [expr [CkJsonArray_get_Size $jarr] - 1]]
CkJsonObject_UpdateInt $jsonObj_1 "id" 456
CkJsonObject_UpdateString $jsonObj_1 "title" "Le Petit Prince"
CkJsonObject_UpdateString $jsonObj_1 "author" "Antoine de Saint-Exupéry"
CkJsonObject_UpdateString $jsonObj_1 "genre" "adventure"
CkJsonObject_UpdateNumber $jsonObj_1 "price" "10.0"
delete_CkJsonObject $jsonObj_1

CkJsonArray_AddObjectAt $jarr -1
set jsonObj_1 [CkJsonArray_ObjectAt $jarr [expr [CkJsonArray_get_Size $jarr] - 1]]
CkJsonObject_UpdateInt $jsonObj_1 "id" 1
CkJsonObject_UpdateString $jsonObj_1 "title" "Alice In Wonderland"
CkJsonObject_UpdateString $jsonObj_1 "author" "Lewis Carroll"
CkJsonObject_UpdateString $jsonObj_1 "genre" "fantasy"
CkJsonObject_UpdateNumber $jsonObj_1 "price" "25.99"
delete_CkJsonObject $jsonObj_1

CkJsonArray_AddObjectAt $jarr -1
set jsonObj_1 [CkJsonArray_ObjectAt $jarr [expr [CkJsonArray_get_Size $jarr] - 1]]
CkJsonObject_UpdateInt $jsonObj_1 "id" 1344
CkJsonObject_UpdateString $jsonObj_1 "title" "The Hobbit"
CkJsonObject_UpdateString $jsonObj_1 "author" "J. R. R. Tolkien"
CkJsonObject_UpdateString $jsonObj_1 "genre" "fantasy"
delete_CkJsonObject $jsonObj_1

CkJsonArray_AddObjectAt $jarr -1
set jsonObj_1 [CkJsonArray_ObjectAt $jarr [expr [CkJsonArray_get_Size $jarr] - 1]]
CkJsonObject_UpdateInt $jsonObj_1 "id" 4
CkJsonObject_UpdateString $jsonObj_1 "title" "Harry Potter and the Half-Blood Prince"
CkJsonObject_UpdateString $jsonObj_1 "author" "J. K. Rowling"
CkJsonObject_UpdateString $jsonObj_1 "genre" "fantasy"
delete_CkJsonObject $jsonObj_1

CkJsonArray_AddObjectAt $jarr -1
set jsonObj_1 [CkJsonArray_ObjectAt $jarr [expr [CkJsonArray_get_Size $jarr] - 1]]
CkJsonObject_UpdateInt $jsonObj_1 "id" 42
CkJsonObject_UpdateString $jsonObj_1 "title" "The Hitchhiker's Guide to the Galaxy"
CkJsonObject_UpdateString $jsonObj_1 "author" "Douglas Adams"
delete_CkJsonObject $jsonObj_1

CkHttp_SetRequestHeader $http "X-Meili-Api-Key" "masterKey"

set sbRequestBody [new_CkStringBuilder]

CkJsonArray_EmitSb $jarr $sbRequestBody

# resp is a CkHttpResponse
set resp [CkHttp_PTextSb $http "POST" "http://localhost:7700/indexes/indexUID/documents" $sbRequestBody "utf-8" "application/json" 0 0]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkJsonArray $jarr
    delete_CkStringBuilder $sbRequestBody
    exit
}

puts [CkHttpResponse_get_StatusCode $resp]
puts [CkHttpResponse_bodyStr $resp]
delete_CkHttpResponse $resp


delete_CkHttp $http
delete_CkJsonArray $jarr
delete_CkStringBuilder $sbRequestBody

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