phpExt / MeiliSearch v0.24 / Get sortable attributes
Back to Collection Items
<?php
include("chilkat.php");
// Use "chilkat_9_5_0.php" for versions of Chilkat < 10.0.0
// 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/indexes/indexUID/settings/sortable-attributes',$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/indexes/indexUID/settings/sortable-attributes
Postman Collection Item JSON
{
"name": "Get sortable attributes",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{url}}/indexes/{{indexUID}}/settings/sortable-attributes",
"host": [
"{{url}}"
],
"path": [
"indexes",
"{{indexUID}}",
"settings",
"sortable-attributes"
]
}
},
"response": [
]
}