Skip to content

获取公海客户列表 API

PathMethodCreated At
/api/customers/lead/pool/paginatePOST2025-11-29 00:39:11

Request

KeyRuleDescription
pageinteger,min:1,max:100页码不正确
page_sizeinteger,min:5,max:1000每页数量不正确
conditionsarray查询条件不正确

Response

KeyTypeExampleComment
idstring1客户ID
customerNostringKH78943客户编号
namestring金职院客户名称
departmentPatharray["技术部", "产品组"]负责部门
industryPatharray["政府", "公安", "刑事"]所在行业
areaCodearray["33", "3301", "330103"]所在地区(编号)
areaarray["浙江省", "杭州市", "上城区"]所在地区
levelNamestring战略级等级
applyStatusenumLeadPoolApplyStatus申请状态

TypeScript Result Example:

TypeScript
interface Result {
  /** 客户ID */
  id: string;
  /** 客户编号 */
  customerNo: string;
  /** 客户名称 */
  name: string;
  /** 负责部门 */
  departmentPath: any;
  /** 所在行业 */
  industryPath: any;
  /** 所在地区(编号) */
  areaCode: any;
  /** 所在地区 */
  area: any;
  /** 等级 */
  levelName: string;
  /** 申请状态 */
  applyStatus: ResultApplyStatus;
}

enum ResultApplyStatus {
  /** 待审批 */
  PENDING = "PENDING",
  /** 已通过 */
  APPROVED = "APPROVED",
  /** 已拒绝 */
  REJECTED = "REJECTED",
  /** 已取消 */
  CANCEL = "CANCEL",
  /** 未申请 */
  UNAPPLY = "UNAPPLY"
}

Enums

LeadPoolApplyStatus

ConstDescription
PENDING待审批
APPROVED已通过
REJECTED已拒绝
CANCEL已取消
UNAPPLY未申请