GET
/
billing
/
add-on-products
curl --request GET \
  --url https://app.teable.cn/api/billing/add-on-products \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
[
  {
    "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

Authorization
string
header
required

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

Response

200 - application/json
Returns add-on products list.
id
string
required
type
enum<string>
required
Available options:
base,
credit
catalog
enum<string>
required
Available options:
cloud,
self-hosted
unitAmount
number
required
prices
object[]
required
trialPeriodInDays
number