Python
import requests url = "https://{FUSION HOST}/api/apps" payload = { "id": "MyNewApp", "name": "My new app", "description": "A really great new app" } headers = {"Content-Type": "application/json"} response = requests.post(url, json=payload, headers=headers) print(response.text)
{ "id": "MyNewApp", "name": "My new app", "description": "A really great new app" }
Create a new Fusion app.
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.
The unique ID for the app.
"MyNewApp"
The display name for the app.
"My new app"
A short description of the app.
"A really great new app"
Created
Was this page helpful?