Get a task
import requests
url = "https://{FUSION HOST}/api/tasks/{id}"
response = requests.get(url)
print(response.text){
"id": "<string>",
"type": "<string>"
}Get the specified task.
GET
/
tasks
/
{id}
Get a task
import requests
url = "https://{FUSION HOST}/api/tasks/{id}"
response = requests.get(url)
print(response.text){
"id": "<string>",
"type": "<string>"
}Was this page helpful?
⌘I