Skip to content

获取商机列表查询数量 API

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

Request

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

Response

KeyTypeExampleComment
countint10数量

TypeScript Result Example:

TypeScript
interface Result {
  /** 数量 */
  count: number;
}