GET
/
plugin
/
center
/
list
curl --request GET \
  --url 'https://app.teable.cn/api/plugin/center/list?ids=SOME_ARRAY_VALUE&positions=SOME_STRING_VALUE' \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
[
  {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "detailDesc": "<string>",
    "logo": "<string>",
    "helpUrl": "<string>",
    "i18n": {
      "en": {
        "title": "Plugin title",
        "description": "Plugin description"
      },
      "zh": {
        "title": "插件标题",
        "description": "插件描述"
      }
    },
    "url": "<string>",
    "createdTime": "<string>",
    "lastModifiedTime": "<string>",
    "createdBy": {
      "id": "<string>",
      "name": "<string>",
      "email": "jsmith@example.com",
      "avatar": "<string>"
    }
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

ids
string[]
positions
string

Response

200 - application/json
Returns data about the plugin center list.
id
string
required
name
string
required
createdTime
string
required
createdBy
object
required
description
string
detailDesc
string
helpUrl
string
i18n
object
Example:
{
  "en": {
    "title": "Plugin title",
    "description": "Plugin description"
  },
  "zh": { "title": "插件标题", "description": "插件描述" }
}
url
string
lastModifiedTime
string