get_group_statistics
Retrieve comprehensive team statistics, including member count, document numbers, read counts, and interaction data, to analyze group activity and engagement on the Yuque platform.
Instructions
获取团队的汇总统计数据,包括成员人数、文档数量、阅读量和互动数据等
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accessToken | No | 用于认证 API 请求的令牌 | |
login | Yes | 团队的登录名或唯一标识 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"accessToken": {
"description": "用于认证 API 请求的令牌",
"type": "string"
},
"login": {
"description": "团队的登录名或唯一标识",
"type": "string"
}
},
"required": [
"login"
],
"type": "object"
}