Uninstall addon
DELETE
/marketplace/{slug}/uninstall
const url = 'https://shoehorn.example.com/api/v1/marketplace/example/uninstall';const options = {method: 'DELETE'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://shoehorn.example.com/api/v1/marketplace/example/uninstallRemoves an installed addon and its configuration.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” slug
required
string
Responses
Section titled “ Responses ”Addon uninstalled
Addon not found