GET /extensions

List all installed extensions

Responses

  • 200 application/json

    Successful Response

    Hide response attributes Show response attributes object
    • id string Required
    • version string Required
    • disabled boolean

      Default value is false.

    • nickname string | null
    • config object

      Additional properties are allowed.

    • config_schema object | null

      Additional properties are allowed.

GET /extensions
curl \
 --request GET 'http://api.example.com/extensions'
Response examples (200)
[
  {
    "id": "string",
    "version": "string",
    "disabled": false,
    "nickname": "string",
    "config": {},
    "config_schema": {}
  }
]