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