English
Knowledge Space Detail
About 203 wordsLess than 1 minute
2026-09-14
Description
Queries the detailed information of a given knowledge space.
Request Specification
HTTP Method: POST + application/json
Request Path: https://${Cloud Domain}/cgi/crm/v2/knowledge/space/detail?thirdTraceId=${Random String}
Request Headers: Refer to Common Parameters
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| data | Map | Yes | Data |
| spaceId | String | Yes | Knowledge space ID |
Request Example
{
"data": {
"spaceId": "space-001"
}
}Response Parameters
The response structure is identical to a single space element (spaces[] item) of List Visible Knowledge Spaces, except that the permission field is never populated by this API and is always null; to query the space permission, call Query Effective Permission of a Resource.
Response Example
{
"traceId": "E-O.fktest4234.1000-20260914120000-xxxxxx",
"errorDescription": "success",
"errorMessage": "success",
"errorCode": 0,
"data": {
"spaceId": "space-001",
"name": "Product Knowledge Base",
"description": "Product materials",
"coverImage": [],
"spaceType": "1",
"spaceChannel": "enterprise",
"spaceScope": "enterprise",
"order": 1,
"state": "1",
"createTime": 1757772000000,
"updateTime": 1757772000000,
"permission": null
}
}Notes
- If the space does not exist or the current user has no VIEW permission on it, the call returns a failure and no space data is returned.
- Do not use the message field in the response for logical judgment, as errorMessage may change.
