Skip to content

List installed addons

GET
/marketplace/installed
curl --request GET \
--url https://shoehorn.example.com/api/v1/marketplace/installed

Returns all addons currently installed in this tenant.

Installed addons

Media type application/json
object
addons
Array<object>
object
slug
string
name
string
version
string
enabled
boolean
status
string
Allowed values: running stopped error
installed_at
string format: date-time
config
object
Example
{
"addons": [
{
"status": "running"
}
]
}