Stopping, restarting, and uninstalling an app
You can stop, restart, or uninstall your app by using the IBM® QRadar® GUI Application Framework REST API endpoints.
Stopping your app
You can disable your application that is running by sending the following empty POST request:
POST /api/gui_app_framework/applications/{app_id}?status="STOPPED"
Restarting your app
You can restart your app by sending the following POST request:
POST /api/gui_app_framework/applications/{app_id}?status="RUNNING"
Uninstalling your app
Use the following DELETE request to uninstall and remove an app:
DELETE /api/gui_app_framework/applications/{app_id}
Checking the status of your app
After starting or stopping your app, you can check the status of the app by sending the following GET request:
GET /api/gui_app_framework/application_definitions/{app_id}