List all tasks
import requests
url = "https://{FUSION HOST}/api/tasks"
response = requests.get(url)
print(response.text)[
{
"id": "<string>",
"type": "<string>"
}
]Fetch the list of existing tasks.
GET
/
tasks
List all tasks
import requests
url = "https://{FUSION HOST}/api/tasks"
response = requests.get(url)
print(response.text)[
{
"id": "<string>",
"type": "<string>"
}
]Was this page helpful?
⌘I