{
"page": 1,
"size": 10,
"filters": {
// 可根据字段过滤
}
}
响应
curl --location --request POST 'https://api.leebay.cyou/docmee/v1/api/ppt/listPptx' \
--header 'Authorization: sk-xxxx' \
--header 'Content-Type: application/json' \
--data-raw '{
"page": 1,
"size": 10,
"filters": {
// 可根据字段过滤
}
}
响应'
{
"code": 0,
"total": 1,
"data": [
{
"id": "xxx", // ppt id
"subject": "xxx", // 主题
"coverUrl": "https://xxx.png", // 封面
"templateId": "xxx", // 模板ID
"userId": "xxx", // 用户ID
"userName": "xxx", // 用户名称
"companyId": 1000,
"updateTime": null,
"createTime": "2024-01-01 10:00:00"
}
],
"message": "操作成功"
}