List all plugins
import requests
url = "https://{FUSION HOST}/api/index-stage-plugins"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)[
"<string>"
]List all plugins
Use this endpoint to discover existing index stage plugins and their IDs and attributes. [DETAILS NEEDED HERE; no plugins listed in test responses.]
GET
/
index-stage-plugins
List all plugins
import requests
url = "https://{FUSION HOST}/api/index-stage-plugins"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)[
"<string>"
]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 - application/json
OK
Was this page helpful?
⌘I