List all plugins
import requests
url = "https://{FUSION HOST}/api/query-stage-plugins"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)[
"custom-graph-security-trimming-stage"
]List all plugins
Get the complete list of all installed custom query stage plugins.
GET
/
query-stage-plugins
List all plugins
import requests
url = "https://{FUSION HOST}/api/query-stage-plugins"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)[
"custom-graph-security-trimming-stage"
]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