Python
import requests url = "https://{FUSION HOST}/api/collections/{collection}/synonyms" response = requests.get(url) print(response.json())
[ { "path": "<string>", "state": "NOT_READY" } ]
Return a list of synonyms files along with their editing states (READY/NOT_READY/NOT_SAVED).
READY
NOT_READY
NOT_SAVED
The name of a collection.
successful operation
Was this page helpful?