Python
import requests url = "https://{FUSION HOST}/api/collections/{collection}/partitions" response = requests.get(url) print(response.json())
[ "<string>" ]
Returns list of partitions for a given collection.
Collection ID.
successful operation
The response is of type string[].
string[]
Was this page helpful?