Chilkat Online Tools

phpExt / MeiliSearch v0.24 / Get a dump status

Back to Collection Items

<?php

include("chilkat_9_5_0.php");

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

$http = new CkHttp();

$http->SetRequestHeader('X-Meili-Api-Key','masterKey');

$sbResponseBody = new CkStringBuilder();
$success = $http->QuickGetSb('http://localhost:7700/dumps/20201001-110357260/status',$sbResponseBody);
if ($success == false) {
    print $http->lastErrorText() . "\n";
    exit;
}

print 'Response status code = ' . $http->get_LastStatus() . "\n";
print $sbResponseBody->getAsString() . "\n";

?>

Curl Command

curl -X GET
	-H "X-Meili-Api-Key: masterKey"
http://localhost:7700/dumps/20201001-110357260/status

Postman Collection Item JSON

{
  "name": "Get a dump status",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{url}}/dumps/20201001-110357260/status",
      "host": [
        "{{url}}"
      ],
      "path": [
        "dumps",
        "20201001-110357260",
        "status"
      ]
    }
  },
  "response": [
  ]
}