简要描述:

  • 获取学生ID列表

接口版本:

版本号 制定人 制定日期 修订日期
v0.1 dev 2022-03-23 init

请求URL:

  • http://{api-gateway-host}/ding/topapi/edu/class/studentid/get

请求方式:

  • POST

认证方式:

  • HMAC

详细可参见 开放平台API的认证说明

请求头:

参数名 是否必须 类型 说明
Content-Type string 请求类型: application/json
Date string http协议标准头
Authorization string hmac 签名
sdp-app-id string 应用租户ID,具体信息获取方式参见应用的sdp-app-id参数获取方式

请求参数:

参数名 是否必须 类型 默认值 说明
class_id long 班级ID
app_id long 应用ID 无用
userid string 教师ID

请求示例:

{
    "class_id": 0,
    "app_id": 0,
    "userid": "string"
}

返回示例:

正确时返回:

{
    "request_id": "string",
    "success": true,
    "errcode": 0,
    "result": {
        "class_id": 0,
        "student_ids": [
            "string"
        ]
    }
}

错误时返回:

返回参数说明:

参数名 类型 说明
request_id string 请求ID
success boolean 是否成功
errcode int 返回码
result.class_id long 班级ID
result.student_ids array 学生ID列表
作者:wangtc  创建时间:2023-10-08 10:41
最后编辑:wangtc  更新时间:2023-11-14 11:11