GET
/
space
/
{spaceId}
/
billing
/
invoice
/
base-list
curl --request GET \
  --url https://app.teable.cn/api/space/%7BspaceId%7D/billing/invoice/base-list \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
[
  {
    "id": "<string>",
    "amount": 123,
    "currency": "<string>",
    "createdTime": "<string>",
    "status": "<string>",
    "pdfUrl": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json
Returns subscription detail.
id
string | null
required
amount
number
required
currency
string
required
createdTime
string
required
status
string | null
required
pdfUrl
string | null