Skip to main content
GET
/
collections
/
{collection}
/
features
Get collection features.
import requests

url = "https://{FUSION HOST}/api/collections/{collection}/features"

response = requests.get(url)

print(response.json())
[
  {
    "name": "<string>",
    "collectionId": "<string>",
    "params": {},
    "enabled": true
  }
]

Path Parameters

collection
string
required

The name of a collection.

Response

200 - application/json

successful operation

name
string
collectionId
string
params
object
enabled
boolean