Chilkat Online Tools

Python / MeiliSearch v0.24 / Get status for one update

Back to Collection Items

import sys
import chilkat2

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

http = chilkat2.Http()

http.SetRequestHeader("X-Meili-Api-Key","masterKey")

sbResponseBody = chilkat2.StringBuilder()
success = http.QuickGetSb("http://localhost:7700/indexes/indexUID/updates/0",sbResponseBody)
if (success == False):
    print(http.LastErrorText)
    sys.exit()

print("Response status code = " + str(http.LastStatus))
print(sbResponseBody.GetAsString())

Curl Command

curl -X GET
	-H "X-Meili-Api-Key: masterKey"
http://localhost:7700/indexes/indexUID/updates/0

Postman Collection Item JSON

{
  "name": "Get status for one update",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{url}}/indexes/{{indexUID}}/updates/0",
      "host": [
        "{{url}}"
      ],
      "path": [
        "indexes",
        "{{indexUID}}",
        "updates",
        "0"
      ]
    }
  },
  "response": [
  ]
}