Get collection features.
import requests
url = "https://{FUSION HOST}/api/collections/{collection}/features"
response = requests.get(url)
print(response.text)[
{
"name": "<string>",
"collectionId": "<string>",
"params": {},
"enabled": true
}
]Get collection features.
Return all features for a specified collection.
GET
/
collections
/
{collection}
/
features
Get collection features.
import requests
url = "https://{FUSION HOST}/api/collections/{collection}/features"
response = requests.get(url)
print(response.text)[
{
"name": "<string>",
"collectionId": "<string>",
"params": {},
"enabled": true
}
]Was this page helpful?
⌘I