Skip to main content
PUT
/
connectors
/
plugins
Install a plugin
import requests

url = "https://{FUSION HOST}/api/connectors/plugins"

headers = {"Content-Type": "application/zip"}

response = requests.put(url, headers=headers)

print(response.json())
{
  "pluginId": "lucidworks.slack",
  "status": {
    "action": "INSTALL",
    "status": "SUCCESS",
    "message": "Plugin lucidworks.slack was installed successfully."
  }
}

Body

application/zip · file

The body is of type file.

Response

200 - application/json

OK

pluginId
string

The ID of the connector plugin.

Example:

"lucidworks.web-v2"

status
object

The action taken and its final status.