Path Parameters
Collection ID.
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())Change partitioned feature for a collection.
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())Collection ID.
Was this page helpful?