Python
import requests url = "https://{FUSION HOST}/api/collections/{collection}/synonyms/{path}/suggestions" response = requests.get(url) print(response.text)
[ "<string>" ]
Get term suggestions from synonyms/categories/comments for autocomplete/autosuggest purposes.
The name of a collection.
The path to a synonyms file.
The field to search.
The query term for which to get suggestions.
successful operation
Was this page helpful?