v50

latestSwagger 2.0MITraw.githubusercontent.com2026-07-15422691.7 KB
plugin

Return all plugins.

get/plugin

Response

Ok

authorstring

The author of the plugin.

capabilitiesstring[] required

Capabilities the plugin provides

createdAtstring date-time required

The date the plugin was created.

enabledboolean required

Whether the plugin instance is enabled.

idinteger required

The plugin id.

licensestring

The license of the plugin.

modulePathstring required

The module path of the plugin.

namestring required

The plugin name.

tokenstring required

The user name. For login.

websitestring

The website of the plugin.

Example response

[
  {
    "author": "jmattheis",
    "capabilities": [
      "webhook",
      "display"
    ],
    "createdAt": "2019-01-01T00:00:00Z",
    "enabled": true,
    "id": 25,
    "license": "MIT",
    "modulePath": "github.com/gotify/server/plugin/example/echo",
    "name": "RSS poller",
    "token": "P1234",
    "website": "gotify.net"
  }
]