import requests
url = "https://{FUSION HOST}/api/features"
response = requests.get(url)
print(response.text)[
{
"name": "<string>",
"defaults": {},
"callback": {
"uri": "<string>",
"method": "GET",
"queryParams": {},
"headers": {},
"entity": {}
}
}
]Fetch the list of existing features.
import requests
url = "https://{FUSION HOST}/api/features"
response = requests.get(url)
print(response.text)[
{
"name": "<string>",
"defaults": {},
"callback": {
"uri": "<string>",
"method": "GET",
"queryParams": {},
"headers": {},
"entity": {}
}
}
]successful operation
Show child attributes
A fully-qualified service URI. This can be an HTTP call, a Solr request, or a Managed Fusion service call.
Supported URI schemas are: http://, https://, solr://{collection}/…, or service://{serviceName}/{path}.
GET, PUT, POST, DELETE An optional payload to be sent with the request.
Was this page helpful?