Update a task
import requests
url = "https://{FUSION HOST}/api/tasks/{id}"
payload = {}
headers = {"Content-Type": "application/json"}
response = requests.put(url, json=payload, headers=headers)
print(response.text){
"id": "<string>",
"type": "<string>"
}Update a task’s configuration.
PUT
/
tasks
/
{id}
Update a task
import requests
url = "https://{FUSION HOST}/api/tasks/{id}"
payload = {}
headers = {"Content-Type": "application/json"}
response = requests.put(url, json=payload, headers=headers)
print(response.text){
"id": "<string>",
"type": "<string>"
}Was this page helpful?
⌘I