Skip to main content
POST
/
collections
/
{collection}
/
partitions
/
_changed
Update a partition feature
import requests

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

payload = {
    "name": "<string>",
    "collectionId": "<string>",
    "params": {},
    "enabled": True
}
headers = {"Content-Type": "application/json"}

response = requests.post(url, json=payload, headers=headers)

print(response.json())

Path Parameters

collection
string
required

Collection ID.

Body

application/json

Partitioned feature configuration.

name
string
collectionId
string
params
object
enabled
boolean