API 列表
- record
- space
- base
- view
- PUTPut table view order
- GETGet table view filter link records
- GETGet view list
- POSTPost table view
- GETGet table view
- DELDelete table view
- PUTPut table view manual sort
- PUTPut table view column meta
- PUTPut table view filter
- PUTPut table view sort
- PUTPut table view group
- PATCHPatch table view options
- PUTPut table view record order
- PUTPut table view name
- PUTPut table view description
- PUTPut table view share meta
- POSTPost table view refresh share id
- POSTPost table view disable share
- POSTPost table view enable share
- POSTPost table viewplugin
- PATCHPatch table view plugin
- GETGet table view plugin
- PUTPut table view locked
- PUT
- 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
- chat
- automation
- authority-matrix
- enterprise
- space-manage
view
Get view list
Get view list
GET
/
table
/
{tableId}
/
view
curl --request GET \
--url https://app.teable.cn/api/table/%7BtableId%7D/view \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
[
{
"id": "<string>",
"name": "<string>",
"type": "grid",
"description": "<string>",
"order": 123,
"options": {
"rowHeight": "short",
"fieldNameDisplayLines": 2,
"frozenColumnCount": 1
},
"sort": {
"sortObjs": [
{
"fieldId": "<string>",
"order": "asc"
}
],
"manualSort": true
},
"filter": {},
"group": [
{
"fieldId": "<string>",
"order": "asc"
}
],
"isLocked": true,
"shareId": "<string>",
"enableShare": true,
"shareMeta": {
"allowCopy": true,
"includeHiddenField": true,
"password": "<string>",
"includeRecords": true,
"submit": {
"allow": true,
"requireLogin": true
}
},
"createdBy": "<string>",
"lastModifiedBy": "<string>",
"createdTime": "<string>",
"lastModifiedTime": "<string>",
"columnMeta": {},
"pluginId": "<string>"
}
]
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200 - application/json
Returns the list of view.
The response is of type object[]
.
curl --request GET \
--url https://app.teable.cn/api/table/%7BtableId%7D/view \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
[
{
"id": "<string>",
"name": "<string>",
"type": "grid",
"description": "<string>",
"order": 123,
"options": {
"rowHeight": "short",
"fieldNameDisplayLines": 2,
"frozenColumnCount": 1
},
"sort": {
"sortObjs": [
{
"fieldId": "<string>",
"order": "asc"
}
],
"manualSort": true
},
"filter": {},
"group": [
{
"fieldId": "<string>",
"order": "asc"
}
],
"isLocked": true,
"shareId": "<string>",
"enableShare": true,
"shareMeta": {
"allowCopy": true,
"includeHiddenField": true,
"password": "<string>",
"includeRecords": true,
"submit": {
"allow": true,
"requireLogin": true
}
},
"createdBy": "<string>",
"lastModifiedBy": "<string>",
"createdTime": "<string>",
"lastModifiedTime": "<string>",
"columnMeta": {},
"pluginId": "<string>"
}
]
助手
Responses are generated using AI and may contain mistakes.