Swift3 / MeiliSearch v0.24 / Add or replace documents
Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
// 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"
// }
// ]
let jarr = CkoJsonArray()!
jarr.addObject(at: -1)
var jsonObj_1: CkoJsonObject? = jarr.object(at: jarr.size.intValue - 1)
jsonObj_1!.updateInt("id", value: 2)
jsonObj_1!.update("title", value: "Pride and Prejudice")
jsonObj_1!.update("author", value: "Jane Austin")
jsonObj_1!.update("genre", value: "romance")
jsonObj_1!.updateNumber("price", numericStr: "3.5")
jsonObj_1 = nil
jarr.addObject(at: -1)
jsonObj_1 = jarr.object(at: jarr.size.intValue - 1)
jsonObj_1!.updateInt("id", value: 456)
jsonObj_1!.update("title", value: "Le Petit Prince")
jsonObj_1!.update("author", value: "Antoine de Saint-Exupéry")
jsonObj_1!.update("genre", value: "adventure")
jsonObj_1!.updateNumber("price", numericStr: "10.0")
jsonObj_1 = nil
jarr.addObject(at: -1)
jsonObj_1 = jarr.object(at: jarr.size.intValue - 1)
jsonObj_1!.updateInt("id", value: 1)
jsonObj_1!.update("title", value: "Alice In Wonderland")
jsonObj_1!.update("author", value: "Lewis Carroll")
jsonObj_1!.update("genre", value: "fantasy")
jsonObj_1!.updateNumber("price", numericStr: "25.99")
jsonObj_1 = nil
jarr.addObject(at: -1)
jsonObj_1 = jarr.object(at: jarr.size.intValue - 1)
jsonObj_1!.updateInt("id", value: 1344)
jsonObj_1!.update("title", value: "The Hobbit")
jsonObj_1!.update("author", value: "J. R. R. Tolkien")
jsonObj_1!.update("genre", value: "fantasy")
jsonObj_1 = nil
jarr.addObject(at: -1)
jsonObj_1 = jarr.object(at: jarr.size.intValue - 1)
jsonObj_1!.updateInt("id", value: 4)
jsonObj_1!.update("title", value: "Harry Potter and the Half-Blood Prince")
jsonObj_1!.update("author", value: "J. K. Rowling")
jsonObj_1!.update("genre", value: "fantasy")
jsonObj_1 = nil
jarr.addObject(at: -1)
jsonObj_1 = jarr.object(at: jarr.size.intValue - 1)
jsonObj_1!.updateInt("id", value: 42)
jsonObj_1!.update("title", value: "The Hitchhiker's Guide to the Galaxy")
jsonObj_1!.update("author", value: "Douglas Adams")
jsonObj_1 = nil
http.setRequestHeader("X-Meili-Api-Key", value: "masterKey")
let sbRequestBody = CkoStringBuilder()!
jarr.emitSb(sbRequestBody)
var resp: CkoHttpResponse? = http.pTextSb("POST", url: "http://localhost:7700/indexes/indexUID/documents", textData: sbRequestBody, charset: "utf-8", contentType: "application/json", md5: false, gzip: false)
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
print("\(resp!.statusCode.intValue)")
print("\(resp!.bodyStr!)")
resp = nil
}
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": [
]
}