Python
import requests url = "https://{FUSION HOST}/api/tasks/{id}" response = requests.get(url) print(response.json())
{ "id": "<string>", "type": "<string>" }
Get the specified task.
The task ID.
successful operation
Was this page helpful?