GET
/
enterprise
/
{organizationId}
/
space-manage
/
{spaceId}
curl --request GET \
  --url https://app.teable.cn/api/enterprise/%7BorganizationId%7D/space-manage/%7BspaceId%7D \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "id": "<string>",
  "name": "<string>",
  "isOrganization": true,
  "base": [
    {
      "id": "<string>",
      "name": "<string>",
      "icon": "<string>"
    }
  ],
  "collaboratorCount": 123,
  "externalUserCount": 123
}

Authorizations

Authorization
string
header
required

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

Path Parameters

organizationId
string
required
spaceId
string
required

Response

200 - application/json
Get space manage detail successfully
id
string
required
name
string
required
isOrganization
boolean
required
base
object[]
required
collaboratorCount
number
required
externalUserCount
number
required