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
- POSTPost templatecreate
- GETget template detail by templateId
- DELDelete template
- PATCHPatch template
- GETGet template
- GETGet templatepublished
- POSTPost template snapshot
- POSTPost templatecategorycreate
- GETGet templatecategorylist
- DELDelete templatecategory
- PATCHPatch templatecategory
- GETget published template category list
- PATCHPatch template pin top
- POST
- automation
- authority-matrix
- enterprise
- space-manage
template
get template detail by templateId
template
get template detail by templateId
get template detail by templateId
GET
/
template
/
{templateId}
curl --request GET \
--url https://app.teable.cn/api/template/%7BtemplateId%7D \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
"id": "<string>",
"name": "<string>",
"categoryId": "<string>",
"isSystem": true,
"isPublished": true,
"snapshot": {
"baseId": "<string>",
"snapshotTime": "2023-11-07T05:31:56Z",
"spaceId": "<string>",
"name": "<string>"
},
"description": "<string>",
"baseId": "<string>",
"cover": {
"token": "xxxxxxxxxxx",
"size": 1024,
"url": "/bucket/xxxxx",
"path": "/table/xxxxxx",
"mimetype": "video/mp4",
"width": 100,
"height": 100,
"name": "<string>",
"id": "<string>",
"presignedUrl": "<string>"
},
"usageCount": 123,
"markdownDescription": "<string>"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
201 - application/json
Successfully get template detail.
The response is of type object
.
curl --request GET \
--url https://app.teable.cn/api/template/%7BtemplateId%7D \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
"id": "<string>",
"name": "<string>",
"categoryId": "<string>",
"isSystem": true,
"isPublished": true,
"snapshot": {
"baseId": "<string>",
"snapshotTime": "2023-11-07T05:31:56Z",
"spaceId": "<string>",
"name": "<string>"
},
"description": "<string>",
"baseId": "<string>",
"cover": {
"token": "xxxxxxxxxxx",
"size": 1024,
"url": "/bucket/xxxxx",
"path": "/table/xxxxxx",
"mimetype": "video/mp4",
"width": 100,
"height": 100,
"name": "<string>",
"id": "<string>",
"presignedUrl": "<string>"
},
"usageCount": 123,
"markdownDescription": "<string>"
}