Python
import requests url = "https://{FUSION HOST}/api/history/{service}/items" response = requests.get(url) print(response.json())
[ "<string>" ]
Return all items in a service’s history.
The name of a service.
successful operation
The response is of type string[].
string[]
Was this page helpful?