Python
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.
An optional tag to match.
The task ID.
JSON-formatted configuration values.
The body is of type object.
object
successful operation
Was this page helpful?