Skip to content

获取商机竞争对手列表 API

PathMethodCreated At
/api/business/opportunities/competitors/paginatePOST2025-11-29 00:39:11

Request

KeyRuleDescription
business_opportunity_idstring,size:24trans:validate.BO_NOT_FOUND
pageinteger,min:1,max:100页码必须为正整数
page_sizeinteger,min:5,max:1000每页数量必须为正整数

Response

KeyTypeExampleComment
idstringuuid编号
businessOpportunityIdstringfd8sc2编号
sistring华为竞争对手
brandstring魅族品牌
managerPersonstring张三负责人
customerServiceSupportPointstring服务良好客勤支持点
initiatorenumInitiator牵头方
isSuperiorbooltrue是否优势
createdAtstring2024-12-12 20:27:00

TypeScript Result Example:

TypeScript
interface Result {
  /** 编号 */
  id: string;
  /** 编号 */
  businessOpportunityId: string;
  /** 竞争对手 */
  si: string;
  /** 品牌 */
  brand: string;
  /** 负责人 */
  managerPerson: string;
  /** 客勤支持点 */
  customerServiceSupportPoint: string;
  /** 牵头方 */
  initiator: ResultInitiator;
  /** 是否优势 */
  isSuperior: any;
  /**  */
  createdAt: string;
}

enum ResultInitiator {
  /** 品牌 */
  BRAND = "BRAND",
  /** 代理 */
  AGENT = "AGENT"
}

Enums

Initiator

ConstDescription
BRAND品牌
AGENT代理