🎉 开放平台文档站换新颜。 欢迎填问卷给我们建议,意见,反馈,夸夸 →
Skip to Content
API文档专用接口开放平台获取开放平台客户端与接口调用情况信息
httpsapitongjieducnv1openplatformapiclient_api_statistics

获取开放平台客户端与接口调用情况信息

最近更新时间: 2026年01月15日 07时34分25秒
开放平台

描述

获取开放平台客户端与接口调用情况信息

支持的模式

客户端模式

请求方法

GET

请求地址

请求参数

参数名是否必填备注
systemIds系统编号,支持批量获取
year年度
month月份
startDate开始时间 ,格式yyyy-MM-dd
endDate结束时间,格式yyyy-MM-dd

返回参数

参数名类型备注码表
code
string响应状态码
msg
string响应信息
data
array[object]相应数据
systemId
string系统编号
systemName
string系统名称
description
string描述
clientApiCount
array[object]接口调用统计
count
number调用次数
endpoint
string接口请求路径标识请参考API文档
clientApiTotalCount
number总调用次数
optionalClientScopes
array[string]可选客户端作用域
defaultClientScopes
array[string]默认客户端作用域

请求示例

curl --request GET 'https://api.tongji.edu.cn/v1/openplatform/api/client_api_statistics?systemIds=SYS001&year=2025'

返回示例

{ "code": "A00000", "msg": "成功", "data": { "list": [ { "systemId": "SYS001", "systemName": "系统编号01", "description": "系统编号01", "clientApiCount": [ { "count": 7, "endpoint": "v1_dc_sep_auth_all_contact_info" }, { "count": 7, "endpoint": "v1_dc_user_teacher_info" }, { "count": 0, "endpoint": "v1_dc_user_organization_list" }, { "count": 0, "endpoint": "v1_dc_sep_auth_student_info" }, { "count": 0, "endpoint": "v2_dc_user_student_infos" }, { "count": 0, "endpoint": "v2_dc_user_teacher_infos" }, { "count": 0, "endpoint": "v2_dc_sep_auth_student_info" }, { "count": 0, "endpoint": "v1_dc_user_student_infos" }, { "count": 0, "endpoint": "v1_dc_user_teacher_infos" }, { "count": 0, "endpoint": "v1_dc_user_student_info" } ], "clientApiTotalCount": 14, "optionalClientScopes": [ "rt_***_score", "rt_***_calendar", ], "defaultClientScopes": [ "userId" ] } ] } }