GET
/
enterprise
/
{organizationId}
/
space-manage
curl --request GET \
  --url 'https://app.teable.cn/api/enterprise/%7BorganizationId%7D/space-manage?search=SOME_STRING_VALUE&skip=SOME_NUMBER_VALUE&take=SOME_NUMBER_VALUE' \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
[
  {
    "id": "<string>",
    "name": "<string>",
    "baseCount": 123,
    "collaboratorCount": 123,
    "isOrganization": true
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

organizationId
string
required

Query Parameters

skip
number | null
default:
0
take
number | null
default:
10
Required range: x < 100

Response

200 - application/json
Get space manage list successfully
id
string
required
name
string
required
baseCount
number
required
collaboratorCount
number
required
isOrganization
boolean