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

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

payload = "<string>"
headers = {"Content-Type": "application/zip"}

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

print(response.text)
{
  "pluginId": "lucidworks.web-v2",
  "status": {
    "action": "INSTALL",
    "status": "SUCCESS",
    "message": "Plugin lucidworks.web-v2 was installed successfully."
  }
}

Body

application/zip

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.