Add or update a plugin
import requests
url = "https://{FUSION HOST}/api/index-stage-plugins"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.put(url, headers=headers)
print(response.text)Add or update a plugin
Install a new index stage plugin, or update the plugin if it already exists.
PUT
/
index-stage-plugins
Add or update a plugin
import requests
url = "https://{FUSION HOST}/api/index-stage-plugins"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.put(url, headers=headers)
print(response.text)Authorizations
Basic authAPI key
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Response
200
OK
Was this page helpful?
⌘I