返回顶部
z

zoho-recruitZoho招聘

|

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.3
安全检测
已通过
11,969
下载量
免费
免费
3
收藏
概述
安装方式
版本历史

zoho-recruit

Zoho Recruit

通过托管 OAuth 认证访问 Zoho Recruit API。支持对候选人、职位空缺、面试、申请和招聘流程进行完整的增删改查操作。

快速开始

bash

列出所有候选人


python < import urllib.request, os, json
req = urllib.request.Request(https://gateway.maton.ai/zoho-recruit/recruit/v2/Candidates?per_page=10)
req.addheader(Authorization, fBearer {os.environ[MATONAPI_KEY]})
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF

基础 URL

https://gateway.maton.ai/zoho-recruit/{native-api-path}

将 {native-api-path} 替换为实际的 Zoho Recruit API 端点路径。网关会将请求代理到 recruit.zoho.com 并自动注入您的 OAuth 令牌。

认证

所有请求都需要在 Authorization 请求头中提供 Maton API 密钥:

Authorization: Bearer $MATONAPIKEY

环境变量: 将您的 API 密钥设置为 MATONAPIKEY:

bash
export MATONAPIKEY=YOURAPIKEY

获取您的 API 密钥

  1. 1. 在 maton.ai 登录或创建账户
  2. 前往 maton.ai/settings
  3. 复制您的 API 密钥

连接管理

在 https://ctrl.maton.ai 管理您的 Zoho Recruit OAuth 连接。

列出连接

bash
python < import urllib.request, os, json
req = urllib.request.Request(https://ctrl.maton.ai/connections?app=zoho-recruit&status=ACTIVE)
req.addheader(Authorization, fBearer {os.environ[MATONAPI_KEY]})
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF

创建连接

bash
python < import urllib.request, os, json
data = json.dumps({app: zoho-recruit}).encode()
req = urllib.request.Request(https://ctrl.maton.ai/connections, data=data, method=POST)
req.addheader(Authorization, fBearer {os.environ[MATONAPI_KEY]})
req.add_header(Content-Type, application/json)
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF

获取连接

bash
python < import urllib.request, os, json
req = urllib.request.Request(https://ctrl.maton.ai/connections/{connection_id})
req.addheader(Authorization, fBearer {os.environ[MATONAPI_KEY]})
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF

响应:
json
{
connection: {
connection_id: 0c9fa9b1-80b6-4caa-afc2-8629fe4d9661,
status: ACTIVE,
creation_time: 2026-02-06T07:48:59.474215Z,
lastupdatedtime: 2026-02-06T07:57:52.950167Z,
url: https://connect.maton.ai/?session_token=...,
app: zoho-recruit,
metadata: {}
}
}

在浏览器中打开返回的 url 以完成 OAuth 授权。

删除连接

bash
python < import urllib.request, os, json
req = urllib.request.Request(https://ctrl.maton.ai/connections/{connection_id}, method=DELETE)
req.addheader(Authorization, fBearer {os.environ[MATONAPI_KEY]})
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF

指定连接

如果您有多个 Zoho Recruit 连接,可以使用 Maton-Connection 请求头指定要使用的连接:

bash
python < import urllib.request, os, json
req = urllib.request.Request(https://gateway.maton.ai/zoho-recruit/recruit/v2/Candidates)
req.addheader(Authorization, fBearer {os.environ[MATONAPI_KEY]})
req.add_header(Maton-Connection, 0c9fa9b1-80b6-4caa-afc2-8629fe4d9661)
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF

如果省略,网关将使用默认(最早创建的)活动连接。

API 参考

模块

列出所有模块

获取 Zoho Recruit 账户中所有可用模块的列表。

bash
GET /zoho-recruit/recruit/v2/settings/modules

示例:

bash
python < import urllib.request, os, json
req = urllib.request.Request(https://gateway.maton.ai/zoho-recruit/recruit/v2/settings/modules)
req.addheader(Authorization, fBearer {os.environ[MATONAPI_KEY]})
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF

候选人

列出候选人

bash
GET /zoho-recruit/recruit/v2/Candidates

查询参数:

参数类型默认值描述
fields字符串-逗号分隔的字段 API 名称
sort_order
字符串 | - | asc 或 desc |
| sort_by | 字符串 | - | 用于排序的字段 API 名称 |
| converted | 字符串 | - | true、false 或 both |
| approved | 字符串 | - | true、false 或 both |
| page | 整数 | 1 | 页码 |
| per_page | 整数 | 200 | 每页记录数(最大 200) |

示例:

bash
python < import urllib.request, os, json
req = urllib.request.Request(https://gateway.maton.ai/zoho-recruit/recruit/v2/Candidates?per_page=10)
req.addheader(Authorization, fBearer {os.environ[MATONAPI_KEY]})
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF

响应:
json
{
data: [
{
id: 846336000000552208,
First_Name: Christina,
Last_Name: Palaskas,
Email: c.palaskas@example.com,
Candidate_Status: Converted - Employee,
Current_Employer: Chandlers,
CurrentJobTitle: Technical Consultant,
ExperienceinYears: 3,
Skill_Set: Communication, Presentation, Customer service,
Candidate_Owner: {
name: Byungkyu Park,
id: 846336000000549541
}
}
],
info: {
per_page: 10,
count: 1,
page: 1,
more_records: false
}
}

根据 ID 获取候选人

bash
GET /zoho-recruit/recruit/v2/Candidates/{record_id}

示例:

bash
python < import urllib.request, os, json
req = urllib.request.Request(https://gateway.maton.ai/zoho-recruit/recruit/v2/Candidates/846336000000552208)
req.addheader(Authorization, fBearer {os.environ[MATONAPI_KEY]})
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF

搜索候选人

bash
GET /zoho-recruit/recruit/v2/Candidates/search?criteria={criteria}

查询参数:

参数类型描述
criteria字符串搜索条件(例如 (Last_Name:contains:Smith))
email
字符串 | 按电子邮件搜索 |
| phone | 字符串 | 按电话搜索 |
| word | 字符串 | 全局单词搜索 |
| page | 整数 | 页码 |
| per_page | 整数 | 每页记录数 |

搜索运算符:

  • - 文本:equals、notequal、startswith、endswith、contains、notcontains、in
  • 日期/数字:equals、notequal、greater

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 zoho-recruit-1776351376 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 zoho-recruit-1776351376 技能

通过命令行安装

skillhub install zoho-recruit-1776351376

下载

⬇ 下载 zoho-recruit v1.0.3(免费)

文件大小: 5.66 KB | 发布时间: 2026-4-17 15:48

v1.0.3 最新 2026-4-17 15:48
- Added clawdbot metadata, including an emoji and required environment variable details, to the skill configuration.
- No changes to skill logic or API usage.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部