Skip to main content
GET
/
tasks
/
{id}
Get a task
import requests

url = "https://{FUSION HOST}/api/tasks/{id}"

response = requests.get(url)

print(response.json())
{
  "id": "<string>",
  "type": "<string>"
}

Path Parameters

id
string
required

The task ID.

Response

200 - application/json

successful operation

id
string
type
string