Get the list of installed plugins

Hi,

We are using Sonar version 6.7. We also have a trial version of v7.9

I am trying to get the list of plugins using this API - /api/plugins/available. I am getting an empty list ( as shown below) when I ran this against both the versions. Please help.

{
“plugins”:
}

Thanks,
Vijay

I know that this is an old thread but I ran
curl http://localhost:9000/api/plugins/installed

You can prettify it by piping through jq eg.
curl http://localhost:9000/api/plugins/installed | jq ‘.plugins | [.key, .name]’

3 Likes