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

博士后信息

最近更新时间: 2025年05月12日 08时08分56秒
数据中心
批量

描述

根据学工号查询博士后基本信息

支持的模式

客户端模式,授权码模式

请求方法

GET

请求地址

https://api.tongji.edu.cn/v2/dc/user/postdoc_info

数据来源

人事系统

请求参数

参数名是否必填备注
userId学工号,可传入多个学工号(上限为500,使用英文逗号分割)进行批量查询
sinceUserId游标的起始位置,请把响应中的同字段传入,获取下一页,循环往复获取全量数据
sinceUpdateTime更新时间,获取该时间点之后信息有更改的数据,此字段格式支持YYYY-MM-DD HH:mm:ss 和 unix时间戳

返回参数

参数名类型备注码表
userIdstring职工号
namestring姓名
mobileStationCodestring流动站代码
mobileStationNamestring流动站名称
inStationDatestring进站日期
contractEndDatedate合同截止日期
postdocExitDatestring博士后出站日期
isFullPostdocstring是否全职博士后,1-是,0-否。根据人事处博管办口径,招录形式为1-统招、5-外籍、6-留学回国的为“全职博士后”
recruitCodestring招录形式代码
recruitNamestring招录形式名称
drGraduationUnitstring博士毕业单位
drDegreeDtstring博士学历授予日期
drDegreeGrantDtstring博士学位授予日期
drThesisTitlestring博士学位论文题目
drGrantCountryCodestring博士学位授予国家代码
drGrantCountryNamestring博士学位授予国家名称

解释说明

此接口可入参userId单条获取数据。如需不传参批量获取数据,请看以下说明: 初始化获取全量数据: 首次请求无需传参,每次固定返回1000条数据,获取后续数据在请求上附上上一次的sinceUserId,当sinceUserId为空或者返回条数为0时,可以停止循环,已经获取全量数据。 获取增量数据:入参为sinceUpdateTime,获取该时间点之后有更改的数据。

请求示例

curl -X GET \ 'https://api.tongji.edu.cn/v2/dc/user/postdoc_info?userId=&sinceUserId=&sinceUpdateTime='

返回示例

{ "code": "A00000", "data": { "count": 2, "userInfos": [ { "contractEndDate": "20**-10-16 00:00:00", "drDegreeDt": " ", "drDegreeGrantDt": "20**-06-10", "drGraduationUnit": " ", "drGrantCountryCode": "156", "drGrantCountryName": "中华人民共和国", "drThesisTitle": "微**********属机制", "inStationDate": "20**-10-16", "isFullPostdoc": "0", "mobileStationCode": "*", "mobileStationName": "环******程", "name": "刘**", "postdocExitDate": "20**-07-28", "recruitCode": "*", "recruitName": "***职", "userId": "20*****01" }, { "contractEndDate": "20**-10-16 00:00:00", "drDegreeDt": " ", "drDegreeGrantDt": "20**-06-30", "drGraduationUnit": " ", "drGrantCountryCode": "156", "drGrantCountryName": "中华人民共和国", "drThesisTitle": "遗*********例", "inStationDate": "20**-10-16", "isFullPostdoc": "0", "mobileStationCode": "*", "mobileStationName": "环******程", "name": "杜*", "postdocExitDate": "20**-10-31", "recruitCode": "*", "recruitName": "***职", "userId": "20*****02" } ] }, "msg": "成功" }