curl --request PUT \
--url https://{FUSION HOST}/api/connectors/plugins \
--header 'Content-Type: application/zip'
{
"pluginId": "lucidworks.slack",
"status": {
"action": "INSTALL",
"status": "SUCCESS",
"message": "Plugin lucidworks.slack was installed successfully."
}
}
Install a plugin from a local .zip
file. You can download plugins as .zip
files at https://doc.lucidworks.com/fusion-connectors/n0s114/v-2-connectors-downloads
curl --request PUT \
--url https://{FUSION HOST}/api/connectors/plugins \
--header 'Content-Type: application/zip'
{
"pluginId": "lucidworks.slack",
"status": {
"action": "INSTALL",
"status": "SUCCESS",
"message": "Plugin lucidworks.slack was installed successfully."
}
}
The body is of type file
.
OK
The response is of type object
.
Was this page helpful?