Python
import requests url = "https://{FUSION HOST}/api/history/{service}/items/{item}" response = requests.delete(url) print(response.json())
Clear a specific item from a service’s history.
The name of a service.
The name of a history item.
Was this page helpful?