GET
/
plugin
/
{pluginId}
curl --request GET \
  --url https://app.teable.cn/api/plugin/%7BpluginId%7D \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "detailDesc": "<string>",
  "logo": "<string>",
  "url": "<string>",
  "helpUrl": "<string>",
  "positions": [
    "dashboard"
  ],
  "i18n": {
    "en": {
      "title": "Plugin title",
      "description": "Plugin description"
    },
    "zh": {
      "title": "插件标题",
      "description": "插件描述"
    }
  },
  "config": {
    "contextMenu": {
      "width": 123,
      "height": 123,
      "x": 123,
      "y": 123,
      "frozenResize": true,
      "frozenDrag": true
    },
    "view": "<any>",
    "dashboard": "<any>",
    "panel": "<any>"
  },
  "secret": "<string>",
  "status": "developing",
  "pluginUser": {
    "id": "<string>",
    "name": "<string>",
    "email": "jsmith@example.com",
    "avatar": "<string>"
  },
  "createdTime": "<string>",
  "lastModifiedTime": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

pluginId
string
required

Response

200 - application/json
Returns data about the plugin.

The response is of type object.