Python
import requests url = "https://{FUSION HOST}/api/collections/{collection}/features" response = requests.get(url) print(response.json())
[ { "name": "<string>", "collectionId": "<string>", "params": {}, "enabled": true } ]
Return all features for a specified collection.
The name of a collection.
successful operation
Show child attributes
Was this page helpful?