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.

The response is of type object[].