注意:以下文档只适用于TOP接口,请谨慎使用!

文档中心 > API类目 > 阿里巴巴招聘系统API

alibaba.recruit.resume.submitapplicationtask (提交应聘任务)

提交应聘任务

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
param_official_new_application_param OfficialNewApplicationParam 可选 应聘任务提交参数
  • └ candidate_mail
  • String
  • 必须
  • 123@22.com
  • 候选人邮箱
  • └ candidate_name
  • String
  • 必须
  • 测试候选人
  • 候选人姓名
  • └ tenant_id
  • String
  • 必须
  • 10008841190
  • 租户id(问开发要)
  • └ position_code
  • String
  • 必须
  • GP1111
  • 应聘的职位编码
  • └ file_key
  • String
  • 必须
  • xxx
  • oss文件上传的osskey(按规范拼接)
  • └ candidate_phone
  • String
  • 必须
  • 13xxx
  • 候选人电话
  • └ file_content_type
  • String
  • 必须
  • pdf
  • 上传的文件类型

响应参数

名称 类型 示例值 描述
data OfficialNewApplicationDTO 任务提交结果参数
  • └ task_id
  • String
  • 13121313
  • 任务id,用于跟踪问题,务必记录下来
  • └ file_key
  • String
  • xxxxxx
  • 请求时提交的fileKey,用于跟踪问题,务必记录下来
result_code String success 响应结果编码
result_message String xxx 响应结果信息(错误有)
result_type String xxx 响应结果类型(错误有)

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaRecruitResumeSubmitapplicationtaskRequest req = new AlibabaRecruitResumeSubmitapplicationtaskRequest();
AlibabaRecruitResumeSubmitapplicationtaskRequest.OfficialNewApplicationParam obj1 = new AlibabaRecruitResumeSubmitapplicationtaskRequest.OfficialNewApplicationParam();
obj1.setCandidateMail("123@22.com");
obj1.setCandidateName("测试候选人");
obj1.setTenantId("10008841190");
obj1.setPositionCode("GP1111");
obj1.setFileKey("xxx");
obj1.setCandidatePhone("13xxx");
obj1.setFileContentType("pdf");
req.setParamOfficialNewApplicationParam(obj1);
AlibabaRecruitResumeSubmitapplicationtaskResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_recruit_resume_submitapplicationtask_response>
    <data>
        <task_id>13121313</task_id>
        <file_key>xxxxxx</file_key>
    </data>
    <result_code>success</result_code>
    <result_message>xxx</result_message>
    <result_type>xxx</result_type>
</alibaba_recruit_resume_submitapplicationtask_response>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部