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.text)This response has no body data.Update a partition feature
Change partitioned feature for a collection.
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.text)This response has no body data.Was this page helpful?
⌘I