Appearance
获取公海客户列表 API
| Path | Method | Created At |
|---|---|---|
| /api/customers/lead/pool/paginate | POST | 2025-11-29 00:39:11 |
Request
| Key | Rule | Description |
|---|---|---|
| page | integer,min:1,max:100 | 页码不正确 |
| page_size | integer,min:5,max:1000 | 每页数量不正确 |
| conditions | array | 查询条件不正确 |
Response
| Key | Type | Example | Comment |
|---|---|---|---|
| id | string | 1 | 客户ID |
| customerNo | string | KH78943 | 客户编号 |
| name | string | 金职院 | 客户名称 |
| departmentPath | array | ["技术部", "产品组"] | 负责部门 |
| industryPath | array | ["政府", "公安", "刑事"] | 所在行业 |
| areaCode | array | ["33", "3301", "330103"] | 所在地区(编号) |
| area | array | ["浙江省", "杭州市", "上城区"] | 所在地区 |
| levelName | string | 战略级 | 等级 |
| applyStatus | enum | LeadPoolApplyStatus | 申请状态 |
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
| Const | Description |
|---|---|
| PENDING | 待审批 |
| APPROVED | 已通过 |
| REJECTED | 已拒绝 |
| CANCEL | 已取消 |
| UNAPPLY | 未申请 |