Uninstall an application
DELETE/marketplace/app/:appId/installations
Uninstalls an application from your company or a specific location. This will remove the application`s access and stop all its functionalities
Request
API Version
v3The application id which is to be uninstalled.
- application/json
- Body
- Example (auto)
Bodyrequired
The company id from which the application is to be uninstalled. If you pass agency token, then companyId is required. It will uninstall application from agency as well as all sub-accounts.
The location id from which the application is to be uninstalled. If you pass location token, then locationId is required. It will uninstall application from that location only.
The reason for uninstalling the application. Reason is required if you are uninstalling the application as a developer.
{
"companyId": "tDtDnQdgm2LXpyiqYvZ6",
"locationId": "tDtDnQdgm2LXpyiqYvZ6",
"reason": "Application is not working as expected"
}
Successfully uninstalled the application
- application/json
- Schema
- Example (auto)
Schema
The status of the uninstallation of the application
{
"success": true
}