Install a plugin
import requests
url = "https://{FUSION HOST}/api/connectors/plugins"
response = requests.post(url)
print(response.text){
"pluginId": "lucidworks.web-v2",
"status": {
"action": "INSTALL",
"status": "SUCCESS",
"message": "Plugin lucidworks.web-v2 was installed successfully."
}
}Install a plugin
Install a plugin from the plugins repository. Use /connectors/repository to get the list of plugins in the repository and their IDs.
POST
/
connectors
/
plugins
Install a plugin
import requests
url = "https://{FUSION HOST}/api/connectors/plugins"
response = requests.post(url)
print(response.text){
"pluginId": "lucidworks.web-v2",
"status": {
"action": "INSTALL",
"status": "SUCCESS",
"message": "Plugin lucidworks.web-v2 was installed successfully."
}
}Query Parameters
The ID of the plugin to install.
The specific plugin version to be installed. Leave empty to use the most recent plugin version.
Was this page helpful?
⌘I