芯化 MCP 开放平台

list_enterprise_inquiries

列出企业询盘/询价主记录。

英文描述

List business inquiry records (询盘/询价) for an enterprise from ads_enterprise_inquiry. Use when the user asks about inquiries, RFQs, or purchase interest linked to a company. Requires ent_id. Optional product_name keyword. For trade-platform inquiries use search_trade_inquiry.

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

请求参数

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

响应参数

参数名参数说明数据类型样例数据
data业务记录数组array[{"ent_id": "EN202401011234567890", "product_name": "丙烯酸", "inquiry_date": "2024-03-10", "quantity": "100吨"}]
data[].ent_id企业 ent_idstringEN202401011234567890
data[].product_name询盘产品string丙烯酸
data[].inquiry_date询盘日期string2024-03-10
data[].quantity需求量string100吨
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",
      "product_name": "丙烯酸",
      "inquiry_date": "2024-03-10",
      "quantity": "100吨"
    }
  ],
  "meta": {
    "total": 1,
    "limit": 20,
    "offset": 0,
    "has_more": false
  }
}