ATS用户中心
所有文章
系统应用
升级公告
常见问题
公开课
校招专栏
内推和门店
数据平台
亮点功能
热门活动
基础操作视频
API文档
时间字段格式说明(Date)
API开发指南(Guide)
主动推送说明(Webhooks)
公共API
招聘官网API
企业信息API
门店API
组织架构API
职责API
用户API
招聘需求 API
候选人API
人才库API
职位API
Offer API
入职API
内推账户API
猎头API
BI报表API
district code
错误码
获取面试反馈数据
最后更新于 2024/04/03   阅读数 75

HTTP请求

GET https://api.mokahr.com/api-platform/v1/data/interviewer_feedbacks

请求query

字段

必填

类型

描述

fromTime

首次请求必填

string

数据的开始时间,fromTime参数只在第一次请求时带,之后的请求就不需要带了,也就是nextfromTime只需要带其中一个。

next

与fromTime有一个必填

string

分页参数,如果有更多的数据可供拉取,响应的json中会有一个next字段,下次请求只需要把这个next参数加到query中就可以了。fromTime参数只在第一次请求时带,之后的请求就不需要带了,也就是nextfromTime只需要带其中一个。如果响应中没有next字段,表示没有更多的数据了

limit

string

分页用的每页条数,默认100

返回

返回body的JSON数据如下:

字段

类型

描述

applicationId

integer

申请Id

interviewerName

string

面试官名字

interviewerEmail

string

面试官邮箱

result Deprecated

integer

面试结果
可选值:
1:非常不满意
2:不满意
3;满意
4:非常满意

resultName

string

面试反馈结果

resultType

integer

面试反馈结果类型
可选值:0: 不满意
1: 满意

interviewType

string

面试类型,以下值之一: 电话面试, 现场面试, 集体面试, 视频面试

round

number

面试轮次
可选值:
1 初试
2 复试
3 终试

feedback

string

面试反馈内容

feedbackTemplateResult

object

面试评价表信息

feedbackTemplateResult.items

array

面试评价表的题目列表

feedbackTemplateResult.items[].type

number

题目类型
可选值:
1: 打分题
2: 单选题
3: 描述题
4: 多选题

feedbackTemplateResult.items[].title

string

题目标题

feedbackTemplateResult.items[].description

string

题目描述

feedbackTemplateResult.items[].calcScoreType

string

avg: 计算平均分,total: 计算总分 (这个字段只有在type为1时有效)

feedbackTemplateResult.items[].scoreType

number

5表示5分制,10表示10分制(这个字段只有在type为1时有效)

feedbackTemplateResult.items[].needReason

string

是否需要打分综述(这个字段只有在type为1时有效)

feedbackTemplateResult.items[].subjects

array

题目下各个小题的信息

feedbackTemplateResult.items[].subjects[].title

array

小题标题

feedbackTemplateResult.items[].subjects[].description

array

小题描述

feedbackTemplateResult.items[].subjects[].result

array

小题结果: 打分题为所选分数的数值;单选题为选项的索引值,从0开始;描述题为描述的字符串

feedbackTemplateResult.items[].subjects[].options

array

选项字符串数组(这个字段只有在type为2时有效)

updatedAt

string

本条数据的最近更新时间

请求样例

$ curl https://api.mokahr.com/api-platform/v1/data/interviewer_feedbacks
1
plaintext

返回样例

{ "data": [ { "applicationId": 1, "round": 1, "interviewerName": "张三", "interviewerEmail": "zhangsan@mokahr.com", "resultName": "非常不满意", "resultType": 0, "feedback": "技术不错", "feedbackTemplateResult": { "items":[ { "type":1, "key":889274446478.9995, "title":"个人能力", "scoreType":5, "calcScoreType":"total", "subjects": [ { "title":"沟通能力", "description":"", "result":4, "key":108456151784.09537 }, { "title":"技能经验", "description":"", "result":3, "key": 160786089566.0061 } ] }, { "type":2, "key":986979085907.8695, "title":"", "description":"", "subjects":[ { "title":"专业技巧", "key": 54296490060.84821, "result":0, "options":[ { "value":"招聘知识强", "key":1478619790466.305 }, { "value":"系统理解强", "key":772643685729.6316 }, { "value":"技术能力强", "key":982210359123.4211 } ] } ] }, { "type":3, "key":716130309734.7427, "title":"", "description":"", "subjects":[ { "title":"综合评语", "key":529722675109.2128, "result":"不错" } ] } ] } } ], "next": "8465195468" }
1
plaintext
未能解决您的问题?请联系
本篇目录

HTTP请求

请求query

返回

请求样例

返回样例