Product Selector

Fusion 5.12
    Fusion 5.12

    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.

    1. Log into Fusion and navigate to the home screen.

    2. Click Create new app.

      Welcome screen create app

    3. Enter a Name, Description, and select an App tile color.

      Create app

    4. Click Create App.

    Modify or delete an app

    1. Log into Fusion and navigate to the home screen.

    2. Click the Configure icon on the app you want to modify or delete.

      App config button

    3. To modify the app, click the edit icon Edit icon.

      Modify app details

      1. Edit the Name or Description.

      2. Click OK.

    4. To delete the app, click Delete app.

      1. 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.

      2. Click Confirm.

        Confirmation dialog

    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}