Appearance
获取商机会议记录的列表 API
| Path | Method | Created At |
|---|---|---|
| /api/business/opportunities/meetings/{boId}/paginate | POST | 2025-11-29 00:39:11 |
Request
| Key | Rule | Description |
|---|---|---|
| boId | string,size:24 | trans:validate.BO_NOT_FOUND |
| page | integer,min:1,max:100 | trans.validate.PAGE_MUST_BE_INTEGER |
| page_size | integer,min:5,max:1000 | trans.validate.PAGE_SIZE_MUST_BE_INTEGER |
Response
| Key | Type | Example | Comment |
|---|---|---|---|
| id | string | 9f3a | 编号 |
| title | string | 第一次会议 | 会议标题 |
| contents | string | 确认需求 | 会议内容 |
| participants | object_array | 参会人员 | |
| -> id | int | 1 | 用户编号 |
| -> name | string | 张三 | 姓名 |
| actionItems | string | 下阶段工作 | action_items |
| createdAt | string | 2024-12-14 15:26:00 | 创建时间 |
TypeScript Result Example:
TypeScript
interface Participants {
/** 用户编号 */
id: number;
/** 姓名 */
name: string;
}
interface Result {
/** 编号 */
id: string;
/** 会议标题 */
title: string;
/** 会议内容 */
contents: string;
/** 参会人员 */
participants: Participants[];
/** action_items */
actionItems: string;
/** 创建时间 */
createdAt: string;
}