在 Zoho Recruit 中上传文档

 概述

通过将它放入 Zoho Creator 中所需的表单动作块,将文档上传到 Zoho Recruit 的过程可以根据需求轻松地实现自动化。假设您有一个 Zoho Creator 表单,用于保存与应聘者相关的所有重要文档。若要同时将文档上传可执行 zoho.recruit.uploadDocument() 任务以便将与应聘者相关的重要文档(例如身份证明文件、简历、履历证书等)上传到 Zoho Recruit 的任何受支持模块。到我们的 Zoho Recruit,您可以执行“成功时”表单动作块中的 zoho.recruit.uploadDocument() 任务。这样,每当提交带有应聘者文档的 Zoho Creator 表单时,系统会将指定的文档上传到 Zoho Recruit。有关如何执行此任务的更多详情在下面说明。

 支持的模块

  • 应聘者
  • 职位空缺
  • 客户
  • 客户联系人

 语法

response = zoho.recruit.uploadDocument(fileName, country, source);

其中,
<response> - 是作为响应由 Zoho Recruit 返回的映射变量。
<fileName> - 将上传到 Zoho Recruit 的文件名称。(必填)
<country> - 应聘者所属国家/地区。(必填)
<source> - 应聘者来源。

 示例

下面是一个示例脚本,可添加到 Zoho Creator 表单中以便将文档上传到 Zoho Recruit。假设我们有一个 Creator 表单,它包含上传文件字段以便上传各种应聘者文档。您可以将以下脚本添加到 Creator 表单的添加时 -> 成功时块,以便每当提交此表单时,文档会同时上传到 Zoho Recruit。

response = zoho.recruit.uploadDocument("Resume", "India");

其中,
response - 是作为响应由 Zoho Recruit 返回的映射变量。
Resume - 将上传到 Zoho Recruit 的文件名称。
India - 应聘者所属国家/地区。

 响应

Zoho Recruit 作为映射返回的响应:

{"message":"Candidate added successfully", "Id" : "1687000000116019"}