Create and manage Fusion apps
You can create, modify, and delete apps in the Fusion UI or with the Apps API.
Manage apps in the Fusion UI
Create an app
Fusion prompts you to create an app the first time you log in. You can create additional apps at anytime from Fusion’s home page. To import an app instead, see Import a Fusion app.
-
Log into Fusion and navigate to the home screen.
-
Click Create new app.
-
Enter a Name, Description, and select an App tile color.
-
Click Create App.
Modify or delete an app
-
Log into Fusion and navigate to the home screen.
-
Click the Configure icon on the app you want to modify or delete.
-
To modify the app, click the edit icon .
-
Edit the Name or Description.
-
Click OK.
-
-
To delete the app, click Delete app.
-
A dialog box appears where you can choose which associated objects to delete or retain. Only objects not associated with other objects are displayed. All objects are selected by default.
-
Click Confirm.
-
Manage apps with the Apps API
Create an app
curl -u USERNAME:PASSWORD -X POST -H 'Content-type: application/json' -d '{"id": "MyNewApp", "name":"My new app", "description":"A really really great new app"}' https://FUSION_HOST/api/apps
Delete an app
Run the following command, replacing {id}
with the name of your app. This operation take about a minute to complete.
curl -u USERNAME:PASSWORD -X DELETE https://FUSION_HOST/api/apps/{id}