dingtalk.oapi.hire.statistics.bizflow.list (智能招聘业务流程for统计)

获取业务流程的基本信息

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
cursor String 可选 12ABC3EDS 分页游标位置,不传默认第一页
size Number 必须 200
  • 最大值:200
  • 分页大小,最大200

    响应参数

    名称 类型 示例值 描述
    result DdAtsPageResult {..} 分页结果
    • └ next_cursor
    • String
    • 12ABC3EDS
    • 游标,下次分页请求使用
    • └ has_more
    • Boolean
    • true
    • 是否还有数据
    • list
    • TopBizFlowStatisticsVo []
    • [..]
    • 职位信息列表
    • └ corp_id
    • String
    • ding12345678
    • 企业id
    • └ flow_id
    • String
    • 123abc
    • 应聘流程id
    • └ candidate_id
    • String
    • 123abc
    • 候选人id
    • └ resume_id
    • String
    • 123abc
    • 简历id
    • └ job_id
    • String
    • job123asd
    • 职位id
    • └ flow_status
    • Number
    • 11
    • 应聘状态 11:待初筛 12:初筛通过 13:初筛不通过 21: 应聘流程中 22:应聘通过 23:应聘不通过(不录用) 31: offer流程中 32: offer通过(录用) 33:offer失败 34: offer取消(取消录用) 41:待入职 42:已入职
    • └ recruit_id
    • String
    • 123abc
    • 应聘id
    • └ owner_userid
    • String
    • 123dhhdh
    • 负责人userid
    • └ creator_userid
    • String
    • 789hhh
    • 创建人userid
    • └ gmt_create_mils
    • Number
    • 1594883804000
    • 创建时间,unix时间戳,单位毫秒
    • └ gmt_modified_mils
    • Number
    • 1594883804000
    • 更新时间,unix时间戳,单位毫秒
    errcode Number 10001 错误码
    errmsg String xxxx 错误信息

    请求示例

    • JAVA
    • .NET
    • PHP
    • CURL
    • Python
    • C/C++
    • NodeJS
    DingTalkClient client = new DefaultDingTalkClient("https://oapi.dingtalk.com/topapi/hire/statistics/bizflow/list");
    OapiHireStatisticsBizflowListRequest req = new OapiHireStatisticsBizflowListRequest();
    req.setCursor("12ABC3EDS");
    req.setSize(200L);
    OapiHireStatisticsBizflowListResponse rsp = client.execute(req, access_token);
    System.out.println(rsp.getBody());

    响应示例

    • JSON示例
    {
        "result":{
            "next_cursor":"12ABC3EDS",
            "has_more":true,
            "list":[
                {
                        "corp_id":"ding12345678",
                        "flow_id":"123abc",
                        "candidate_id":"123abc",
                        "resume_id":"123abc",
                        "job_id":"job123asd",
                        "flow_status":11,
                        "recruit_id":"123abc",
                        "owner_userid":"123dhhdh",
                        "creator_userid":"789hhh",
                        "gmt_create_mils":1594883804000,
                        "gmt_modified_mils":1594883804000
                }
            ]
        },
        "errcode":10001,
        "errmsg":"xxxx"
    }

    异常示例

    • JSON示例
    {
    	"errcode":88,
    	"errmsg":"ding talk error"
    }

    错误码解释

    错误码 错误描述 解决方案

    API工具

    如何获得此API

    FAQ

    返回
    顶部