Path Parameters
The name of a collection.
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.
import requests
url = "https://{FUSION HOST}/api/collections/{collection}/features"
response = requests.get(url)
print(response.json())[
{
"name": "<string>",
"collectionId": "<string>",
"params": {},
"enabled": true
}
]The name of a collection.
Was this page helpful?