Plugins
Get a list of installed plugins. This is useful for example if you want to use an integrated plugin like livestack or TPPA
GET
/application/plugins
curl \
--request GET 'http://localhost:1888/v2/api/application/plugins'
Response examples (200)
{
"Response": [
"Advanced API",
"Livestack",
"Three Point Polar Alignment",
"Touch 'N' Stars"
],
"Error": "string",
"StatusCode": 200,
"Success": true,
"Type": "API"
}
Response examples (500)
{
"Response": "string",
"Error": "Unknown error",
"StatusCode": 500,
"Success": false,
"Type": "API"
}