Chilkat Online Tools

Perl / MeiliSearch v0.24 / Get searchable attributes

Back to Collection Items

use chilkat();

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

$http = chilkat::CkHttp->new();

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

$sbResponseBody = chilkat::CkStringBuilder->new();
$success = $http->QuickGetSb("http://localhost:7700/indexes/indexUID/settings/searchable-attributes",$sbResponseBody);
if ($success == 0) {
    print $http->lastErrorText() . "\r\n";
    exit;
}

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

Curl Command

curl -X GET
	-H "X-Meili-Api-Key: masterKey"
http://localhost:7700/indexes/indexUID/settings/searchable-attributes

Postman Collection Item JSON

{
  "name": "Get searchable attributes",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{url}}/indexes/{{indexUID}}/settings/searchable-attributes",
      "host": [
        "{{url}}"
      ],
      "path": [
        "indexes",
        "{{indexUID}}",
        "settings",
        "searchable-attributes"
      ]
    }
  },
  "response": [
  ]
}