Skip to main content
GET
/
enterprise
/
{organizationId}
/
space-manage
cURL
curl --request GET \
  --url http://127.0.0.1:3000/api/enterprise/{organizationId}/space-manage \
  --header 'Authorization: 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
Last modified on December 10, 2025