芯化 MCP 开放平台

list_enterprise_recruitment

列出企业招聘信息(ads_enterprise_recruitment)。需 ent_id;可选 recruitment_channel 筛选招聘渠道。

英文描述

List job recruitment postings linked to an enterprise from ads_enterprise_recruitment. Use for 招聘. Requires ent_id. Optional recruitment_channel filter.

文档更新:2026-06-23T10:00:00+08:00

请求参数

参数名参数说明数据类型样例数据
ent_id必填;至少 1 个字符stringEN202401011234567890
recruitment_channel选填;至少 1 个字符string(选填,示例中省略)
limit选填integer20
offset选填integer0

响应参数

参数名参数说明数据类型样例数据
data业务记录数组array[{"ent_id": "EN202401011234567890", "job_title": "化工销售经理", "recruitment_channel": "智联招聘", "publish_date": "2024-01-20"}]
data[].ent_id企业 ent_idstringEN202401011234567890
data[].job_title招聘职位string化工销售经理
data[].recruitment_channel招聘渠道string智联招聘
data[].publish_date发布日期string2024-01-20
meta.total命中总数integer100
meta.limit本页 limitinteger20
meta.offset本页 offsetinteger0
meta.has_more是否还有下一页booleantrue

响应状态说明

状态说明
success调用成功,返回业务数据
failed参数错误、后端业务错误或系统异常
deniedAPI Key 无效、无权限、RBAC/菜单拒绝等

请求示例

{
  "ent_id": "EN202401011234567890",
  "limit": 20,
  "offset": 0
}

响应示例

{
  "data": [
    {
      "ent_id": "EN202401011234567890",
      "job_title": "化工销售经理",
      "recruitment_channel": "智联招聘",
      "publish_date": "2024-01-20"
    }
  ],
  "meta": {
    "total": 1,
    "limit": 20,
    "offset": 0,
    "has_more": false
  }
}