import requests
url = "https://{FUSION HOST}/api/collections/{collection}/synonyms/{path}"
payload = {
"path": "<string>",
"state": "NOT_READY"
}
headers = {"Content-Type": "application/json"}
response = requests.put(url, json=payload, headers=headers)
print(response.text)