获取带教信息
POST
/idp/TutorShip/GetDataList
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://openapi.italent.cn/idp/TutorShip/GetDataList' \
--header 'Content-Type: application/json' \
--data-raw '{
"PageSize":15, //每页15条数据
"PageIndex":1, //第1页
"Tutors":[101141967], //带教人Id为101141967
"BeTaught":[101049971], //被带教人Id为101049971
"PeriodStartDate":"2021-01-01", //开始时间晚于或等于2021年1月1日
"PeriodEndDate":"2021-01-10", //结束时间早于或等于2021年1月10日的数据
"PeriodYear":2021, //年度等于2021年
"QueryDate":"2019-01-01" //创建时间在2019年1月1日之后的数据
}'
响应示例响应示例
{
"code": 0,
"message": "string",
"_id": "string",
"data": {
"count": 0,
"columns": [
{
"name": "string",
"label": "string",
"dataType": 0
}
],
"paging": {
"page": 0,
"capacity": 0,
"total": 0
},
"biz_data": [
{
"property1": {
"name": "string",
"text": "string",
"value": "string"
},
"property2": {
"name": "string",
"text": "string",
"value": "string"
}
}
]
}
}
请求参数
Body 参数application/json