获取作答问卷的用户记录列表

https://api.mytijian.com/open-api/V2/ws/survey/listAccountSurveyRecord?accessToken=ACCESS_TOKEN
请求协议:HTTPS
请求方式:POST
需要签名: 否
URL参数:

参数名 是否必须 类型 说明
accessToken string 当前有效的accessToken
POST参数示例
  1. {
  2. "name": "胡文刚",
  3. "idCard": "330726198510163913",
  4. "mobile": "13588152017",
  5. "startTime": "2022-04-24",
  6. "endTime": "2022-04-24",
  7. "currentPage": 1,
  8. "pageSize": 10
  9. }
请求参数说明:
参数名 是否必须 类型 说明
name string 评估人名称
idCard string 评估人身份证
mobile string 评估人手机号
startTime string 开始时间 格式yyyy-MM-dd
endTime string 结束时间 格式yyyy-MM-dd
currentPage int 当前页
pageSize int 每页显示的条数

正确返回示例:

  1. {
  2. "data":{
  3. "records":[
  4. {
  5. "accountSurveyId":6372186,
  6. "surveyId":10,
  7. "gender":0,
  8. "accountSurveyLink":"https://crm.mytijian.com/public/questionnaire.html?accountSurveyEncryptId=SuBRfpjxH1J4W1L3gE3reg%3D%3D",
  9. "printStatus":0,
  10. "idCard":"330726198510163913",
  11. "mobile":"13588152017",
  12. "name":"胡文刚",
  13. "marriageStatus":1,
  14. "updateTime":1650606078000,
  15. "title":"健康自诊评估",
  16. "age":36
  17. }
  18. ],
  19. "page":{
  20. "offset":0,
  21. "pageSize":10,
  22. "rowCount":1,
  23. "currentPage":1,
  24. "countMethod":"Count"
  25. }
  26. },
  27. "msg":"success",
  28. "success":"T"
  29. }
返回参数说明:
参数名 类型 说明
success String T成功,F失败
msg String 描述消息
errCode String 错误码,只有失败的时候才有
data PageView 分页查询对象
PageView对象说明
参数名 是否必须 类型 说明
page Page 分页参数对象
records List< AccountSurveyRecordDTO > 用户答题记录集合
page对象说明
参数名 是否必须 类型 说明
offset int 偏移量
pageSize int 每页显示的条数
currentPage int 当前页码
rowCount int 总条数
countMethod string 计数方法
AccountSurveyRecordDTO 对象说明
参数名 是否必须 类型 说明
accountSurveyId int 用户答题记录ID
surveyId int 问卷id
gender int 评估人的性别 :0 男,1 女
accountSurveyLink String 答题详情链接
printStatus int 打印状态(0:未打印,1:已打印)
idCard String 评估人身份证号
mobile String 评估人手机号
name String 评估人名称
marriageStatus int 评估人的婚姻状态: 0 未婚 ,1 已婚
updateTime int 答题时间
title String 标题
age int 年龄
文档更新时间: 2023-02-22 16:28