Python
import requests url = "https://{FUSION HOST}/api/scheduler/jobs" response = requests.delete(url) print(response.json())
[ "<string>" ]
Stop all currently-running jobs.
successful operation
The response is of type string[].
string[]
Was this page helpful?