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.
Documentation IndexFetch the complete documentation index at: https://doc.lucidworks.com/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://doc.lucidworks.com/llms.txt
Use this file to discover all available pages before exploring further.
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?