List matching configurations
import requests
url = "https://{FUSION HOST}/api/configurations"
response = requests.get(url)
print(response.text){
"com.lucidworks.apollo-admin.config/zk-connect": [
{
"value": "FUSION_HOST:9983",
"location": "system properties"
}
]
}List matching configurations
List all configurations in the system, or use prefixes or pattern matching to list the set of matching configurations.
GET
/
configurations
List matching configurations
import requests
url = "https://{FUSION HOST}/api/configurations"
response = requests.get(url)
print(response.text){
"com.lucidworks.apollo-admin.config/zk-connect": [
{
"value": "FUSION_HOST:9983",
"location": "system properties"
}
]
}Query Parameters
Find all configuration items that contain the specified string.
Find all configuration items that start with the specified string.
Display the Fusion component (or the part of the server’s operating system) that set the configuration item. Otherwise, the output includes only the name and value of the configuration item.
Response
200 - application/json
successful operation
Show child attributes
Show child attributes
Was this page helpful?
⌘I