curl --request GET \
--url https://{FUSION HOST}/api/collections/{collection}/solr-config/{path}
{
"name": "<string>",
"parent": "<string>",
"href": "<string>",
"version": 123,
"isDir": true,
"children": [
{}
],
"value": [
"aSDinaTvuI8gbWludGxpZnk="
],
"type": "STOPWORDS"
}
Fetch a single Solr configuration file. Use /solr-config
with recursive
set to true
to get the list of existing files and their paths.
curl --request GET \
--url https://{FUSION HOST}/api/collections/{collection}/solr-config/{path}
{
"name": "<string>",
"parent": "<string>",
"href": "<string>",
"version": 123,
"isDir": true,
"children": [
{}
],
"value": [
"aSDinaTvuI8gbWludGxpZnk="
],
"type": "STOPWORDS"
}
The collection that contains the configuration files.
The path to a specific file or nested child nodes. If the file is not nested, the filename can be entered without any path information.
successful operation
The response is of type object
.
Was this page helpful?