🎉 开放平台文档站换新颜。 欢迎填问卷给我们建议,意见,反馈,夸夸 →
Skip to Content

奖学金

最近更新时间: 2023年06月26日 05时38分49秒
数据中心

描述

根据学号查询学生获得奖学金情况信息

支持的模式

客户端模式,授权码模式

请求方法

GET

请求地址

https://api.tongji.edu.cn/v1/dc/student_work_info/scholarship

数据来源

教务系统,学工系统

请求参数

参数名是否必填备注
userId获得奖学金学生学号

返回参数

参数名类型备注码表
widSTRINGwid
userIdSTRING获得奖学金学生学号
nameSTRING获得奖学金学生姓名
deptCodeSTRING所属学院代码
deptNameSTRING所属学院名称
scholarshipNameSTRING奖学金名称
scholarshipLevelSTRING奖学金级别
amountSTRING金额
ratingSTRING评定等级
ratingYearSTRING评定学年

解释说明

count为请求返回值的数量,即学生获得奖学金总次数; userInfos为返回参数,即学生获得奖学金信息数据。

请求示例

curl -X GET \ 'https://api.tongji.edu.cn/v1/dc/student_work_info/scholarship' \ -H 'userId: '

返回示例

{ "code": "A00000", "data": { "count": 3, "userInfos": [ { "amount": "3000", "deptCode": "000170", "deptName": "机械与能源工程学院", "name": "刘**", "rating": "校内", "ratingYear": "2016", "scholarshipLevel": "二等奖", "scholarshipName": "优秀学生奖学金(本科生)", "userId": "1*****4", "wid": "5m3c4j5g-h7odcp-j8zpeipw-1-j9cghv0k-bos" }, { "amount": "2000", "deptCode": "000170", "deptName": "机械与能源工程学院", "name": "刘**", "rating": "校内", "ratingYear": "2015", "scholarshipLevel": "三等奖", "scholarshipName": "优秀学生奖学金(本科生)", "userId": "1*****4", "wid": "5m3c4j5g-cf2v9o-itb5eqiq-1-iurzz51t-anj" }, { "amount": "3000", "deptCode": "000170", "deptName": "机械与能源工程学院", "name": "刘**", "rating": "校内", "ratingYear": "2014", "scholarshipLevel": "二等奖", "scholarshipName": "优秀学生奖学金(本科生)", "userId": "1*****4", "wid": "5m3c4j5g-7i2dnf-igq3ltz8-1-igrb2c5u-9z" } ] }, "msg": "成功" }