Quick Start
API List
- record
- space
- base
- view
- API Reference
- dashboard
- plugin
- attachments
- admin
- trash
- field
- aggregation
- table
- selection
- plan
- user
- auth
- db-connection
- invitation
- share
- notification
- access-token
- import
- export
- pin
- billing
- usage
- oauth
- comment
- organization
- ai
- integrity
- plugin-panel
- plugin-context-menu
- template
- automation
- authority-matrix
- enterprise
- space-manage
plugin
Get plugin
plugin
Get plugin
Get plugins
GET
/
plugin
curl --request GET \
--url https://app.teable.cn/api/plugin \
--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": "插件描述"
}
},
"status": "developing",
"pluginUser": {
"id": "<string>",
"name": "<string>",
"email": "jsmith@example.com",
"avatar": "<string>"
},
"createdTime": "<string>",
"lastModifiedTime": "<string>"
}
]
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Returns data about the plugins.
The response is of type object[]
.
curl --request GET \
--url https://app.teable.cn/api/plugin \
--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": "插件描述"
}
},
"status": "developing",
"pluginUser": {
"id": "<string>",
"name": "<string>",
"email": "jsmith@example.com",
"avatar": "<string>"
},
"createdTime": "<string>",
"lastModifiedTime": "<string>"
}
]