芯化 MCP 开放平台

list_enterprise_quotations

列出企业报价记录。

英文描述

List quotation records (报价) for an enterprise from ads_enterprise_quotation. Use when the user asks about quotes, pricing offers, or 报价单 linked to a company. Requires ent_id. Optional product_name keyword. Pairs logically with list_enterprise_inquiries.

文档更新: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": "丙烯酸", "quote_date": "2024-03-11", "quote_price": "8500元/吨"}]
data[].ent_id企业 ent_idstringEN202401011234567890
data[].product_name报价产品string丙烯酸
data[].quote_date报价日期string2024-03-11
data[].quote_price报价string8500元/吨
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": "丙烯酸",
      "quote_date": "2024-03-11",
      "quote_price": "8500元/吨"
    }
  ],
  "meta": {
    "total": 1,
    "limit": 20,
    "offset": 0,
    "has_more": false
  }
}