Help Center/ KooDrive/ API Reference/ API/ Space Management/ Querying Space Details by Space ID
Updated on 2024-07-30 GMT+08:00

Querying Space Details by Space ID

Function

Query space details by space ID. This API applies only to machine-to-machine calling.

URI

GET /koodrive/ose/v1/space/container/{container_id}

Table 1 Path Parameters

Parameter

Mandatory

Type

Description

container_id

Yes

String

Space ID.

Request Parameters

Table 2 Request header parameters

Parameter

Mandatory

Type

Description

Authorization

Yes

String

Access token. Token authentication is used to call KooDrive APIs. A token indicates the permission. When an API is called, the token is added to the request header to obtain the operation permission. For details about how to obtain an access token, see the corresponding developer guide. The format is Bearer+{access_token}.

X-Traceid

No

String

Message log trace ID. The value contains 58 bits.

language

No

String

Language code, which complies with the internationalization specifications. For example, en-US indicates English (United States). English (United States) is used by default.

Response Parameters

Status code: 200

Table 3 Response body parameters

Parameter

Type

Description

code

String

Response code.

msg

String

Response message.

data

SpaceInfo object

Space information.

Table 4 SpaceInfo

Parameter

Type

Description

type

String

Owner type. 0: department space; 1: individual space; 2: group space.

status

String

Status.

ownerId

String

Space owner.

  1. For a department space, the department ID is returned.

  2. For an individual space, the user ID is returned.

  3. For a group space, the group ID is returned.

containerId

String

Space ID.

bizRootFileId

String

ID of the service root directory, which stores unencrypted common files.

bizSboxFileId

String

ID of the service safe directory, which stores encrypted files.

capacity

String

Space size.

spaceUsed

String

Size of the used space.

administrators

String

  1. For a department space, administrator names are returned. Multiple administrators are separated by commas (,). 2. For a group space, the owner name is returned.

tenantId

String

Tenant ID.

creator

String

Creator.

createTime

String

Creation time.

modifier

String

ID of the user who updated the information.

updateTime

String

Update time.

userNum

String

Number of users.

rootFileId

String

ID of the space root directory.

Example Requests

Queries details about a space whose ID is IAADfsBFCO6WtAtuAb7e92cde625843cfb7f4ceba802e0b.

GET /koodrive/ose/v1/space/container/IAADfsBFCO6WtAtuAb7e92cde625843cfb7f4ceba802e0b

Authorization:Bearer+10f88**********4791e9ff

Example Responses

Status code: 200

Space details.

{
  "data" : {
    "tenantId" : "40086000004871666",
    "creator" : "369528171409614001",
    "createTime" : "2023-11-14T20:39:06.000Z",
    "modifier" : "369528171409614001",
    "updateTime" : "2023-12-27T03:41:49.000Z",
    "ownerId" : "1289173668999530369",
    "type" : 0,
    "status" : 0,
    "capacity" : 1,
    "spaceUsed" : 654777,
    "containerId" : "IAADfsBFCO6WtAtuAb7e92cde625843cfb7f4ceba802e0b",
    "rootFileId" : "HFaETMi24qYqOM5KQmpNY2ATjKJeAunIK",
    "bizRootFileId" : "DEUI7pa0C24ArootIAADfsBFCO6WtAtuAb7e92cde625843cfb7f4ceba802e0b",
    "bizSboxFileId" : "DEUI7pa0C24AsboxIAADfsBFCO6WtAtuAb7e92cde625843cfb7f4ceba802e0b"
  },
  "code" : 0,
  "msg" : "OK"
}

Status Codes

Status Code

Description

200

Space details.