List installed addons
GET
/marketplace/installed
const url = 'https://shoehorn.example.com/api/v1/marketplace/installed';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://shoehorn.example.com/api/v1/marketplace/installedReturns all addons currently installed in this tenant.
Responses
Section titled “ Responses ”Installed addons
Media type application/json
object
addons
Array<object>
object
slug
string
name
string
version
string
enabled
boolean
status
string
installed_at
string format: date-time
config
object
Example
{ "addons": [ { "status": "running" } ]}