查询所有 PPT 列表
接口信息
- 方法:POST
- 路径:
- 鉴权:请求头传
Api-Key
接口作用
查询当前 Api-Key 账号在指定时间范围内生成的全部 PPT。
请求示例
curl --request POST \ --url https://open.docmee.cn/api/ppt/listAllPptx \ --header "Content-Type: application/json" \ --header "Api-Key: YOUR_API_KEY" \ --data '{ "page": 1, "size": 10, "id": null, "uid": null, "templateId": null, "startDate": "2024-01-01 00:00:00", "endDate": "2025-01-01 23:59:59", "desc": true }'
请求参数
{ "page": 1, "size": 10, "id": null, "uid": null, "templateId": null, "startDate": "2024-01-01 00:00:00", "endDate": "2025-01-01 23:59:59", "desc": true }
请求字段说明
| 参数名 | 类型 | 必填 | 示例 | 说明 |
|---|---|---|---|---|
page | number | 否 | 1 | 分页查询参数。 |
size | number | 否 | 10 | 分页查询参数。 |
id | string | 否 | null | 业务对象 ID。 |
uid | string | 否 | null | 第三方用户标识,用于隔离数据。 |
templateId | string | 否 | null | 模板 ID。 |
startDate | string | 否 | 2024-01-01 00:00:00 | 时间范围字段。 |
endDate | string | 否 | 2025-01-01 23:59:59 | 时间范围字段。 |
desc | boolean | 否 | true | 字段用途请结合接口场景传入。 |
说明
size最大不超过 100- 适合做管理后台、审计看板或按账号汇总查询
响应示例
{ "code": 0, "message": "操作成功", "data": { "id": "VALUE" } }
响应字段说明
| 字段名 | 类型 | 示例 | 说明 |
|---|---|---|---|
code | number | 0 | 通用响应状态码,0 表示成功。 |
message | string | 操作成功 | 服务端返回的结果说明。 |
data | object | {...} | 业务数据对象。 |
Last updated on