API 列表
- record
- space
- base
- view
- trash
- field
- dashboard
- aggregation
- table
- selection
- plan
- attachments
- user
- auth
- db-connection
- invitation
- share
- notification
- access-token
- import
- export
- pin
- billing
- GETGet space billingsubscriptionsummary
- GETGet billingsubscriptionsummary
- GETGet billingbase products
- GETGet space billing
- GETGet space billinginvoicebase list
- GETGet billingsubscriptionlicense
- GETGet billingsubscriptionlicense 1
- GETGet billingadd on products
- GETGet space billingsubscription
- DELDelete space billingsubscription
- POSTPost space billingsubscriptioncheckout
- POSTPost billingsubscriptionlicensecheckout
- GETGet billingall products
- GET
- admin
- usage
- oauth
- plugin
- comment
- organization
- ai
- integrity
- automation
- authority-matrix
- enterprise
- space-manage
- API Reference
billing
Get billingall products
billing
Get billingall products
Get all products collection
GET
/
billing
/
all-products
curl --request GET \
--url https://app.teable.cn/api/billing/all-products \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
"baseProducts": [
{
"id": "<string>",
"type": "base",
"catalog": "cloud",
"level": "free",
"trialPeriodInDays": 123,
"giftCredit": 123,
"creditSubscribeEnable": true,
"limit": {
"maxRows": 123,
"maxSizeAttachments": 123,
"maxNumDatabaseConnections": 123,
"maxRevisionHistoryDays": 123,
"maxAutomationHistoryDays": 123,
"automationEnable": true,
"auditLogEnable": true,
"adminPanelEnable": true,
"rowColoringEnable": true,
"buttonFieldEnable": true,
"userGroupEnable": true,
"advancedExtensionsEnable": true,
"advancedPermissionsEnable": true,
"passwordRestrictedSharesEnable": true,
"authenticationEnable": true,
"domainVerificationEnable": true,
"organizationEnable": true
},
"prices": [
{
"id": "<string>",
"productId": "<string>",
"type": "<string>",
"interval": "month",
"intervalCount": 123,
"unitAmount": 123,
"currency": "<string>"
}
]
}
],
"addOnProducts": [
{
"id": "<string>",
"type": "base",
"catalog": "cloud",
"unitAmount": 123,
"prices": [
{
"id": "<string>",
"productId": "<string>",
"type": "<string>",
"interval": "month",
"intervalCount": 123,
"unitAmount": 123,
"currency": "<string>"
}
],
"trialPeriodInDays": 123
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Returns all products collection.
Available options:
base
, credit
Available options:
cloud
, self-hosted
Available options:
free
, plus
, pro
, enterprise
Available options:
month
, year
Available options:
base
, credit
Available options:
cloud
, self-hosted
Available options:
month
, year
curl --request GET \
--url https://app.teable.cn/api/billing/all-products \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
"baseProducts": [
{
"id": "<string>",
"type": "base",
"catalog": "cloud",
"level": "free",
"trialPeriodInDays": 123,
"giftCredit": 123,
"creditSubscribeEnable": true,
"limit": {
"maxRows": 123,
"maxSizeAttachments": 123,
"maxNumDatabaseConnections": 123,
"maxRevisionHistoryDays": 123,
"maxAutomationHistoryDays": 123,
"automationEnable": true,
"auditLogEnable": true,
"adminPanelEnable": true,
"rowColoringEnable": true,
"buttonFieldEnable": true,
"userGroupEnable": true,
"advancedExtensionsEnable": true,
"advancedPermissionsEnable": true,
"passwordRestrictedSharesEnable": true,
"authenticationEnable": true,
"domainVerificationEnable": true,
"organizationEnable": true
},
"prices": [
{
"id": "<string>",
"productId": "<string>",
"type": "<string>",
"interval": "month",
"intervalCount": 123,
"unitAmount": 123,
"currency": "<string>"
}
]
}
],
"addOnProducts": [
{
"id": "<string>",
"type": "base",
"catalog": "cloud",
"unitAmount": 123,
"prices": [
{
"id": "<string>",
"productId": "<string>",
"type": "<string>",
"interval": "month",
"intervalCount": 123,
"unitAmount": 123,
"currency": "<string>"
}
],
"trialPeriodInDays": 123
}
]
}