Python
import requests url = "https://{FUSION HOST}/api/tasks" response = requests.get(url) print(response.json())
[ { "id": "<string>", "type": "<string>" } ]
Fetch the list of existing tasks.
successful operation
Was this page helpful?