curl --request GET \
--url https://{FUSION HOST}/api/tasks
[
{
"id": "<string>",
"type": "<string>"
}
]
Fetch the list of existing tasks.
curl --request GET \
--url https://{FUSION HOST}/api/tasks
[
{
"id": "<string>",
"type": "<string>"
}
]
successful operation
The response is of type object[]
.
Was this page helpful?