Python
import requests url = "https://{FUSION_HOST}/job-config/tasks" payload = { "type": "blob-download" } headers = {"Content-Type": "application/json"} response = requests.post(url, json=payload, headers=headers) print(response.text)
{ "type": "blob-download", "id": "refresh-autocomplete-blob2", "url": "https://doc.lucidworks.com/autocomplete/5.9/autocomplete_documentation.json", "blobId": "autocomplete/autocomplete_documentation.json", "updates": [ { "userId": "admin", "timestamp": "2025-12-18T19:37:17.920408350Z" } ] }
Create a new task job with the specified configuration.
The app to which a job belongs, formatted as app:APP_NAME.
app:APP_NAME
OK
Was this page helpful?