{
"outlineContentMarkdown": "# 主题\n## 章节\n### 页面标题\n#### 内容标题\n- 内容",
"pptxProperty": false
}
curl --location --request POST '/docmee/v1/api/ppt/generatePptx' \
--header 'token;' \
--header 'Content-Type: application/json' \
--data-raw '{
"outlineContentMarkdown": "# 主题\n## 章节\n### 页面标题\n#### 内容标题\n- 内容",
"pptxProperty": false
}'
{
"code": 0,
"message": "操作成功",
"data": {
"pptInfo": {
"id": "ppt123",
"subject": "示例主题",
"coverUrl": "https://example.com/cover.png",
"fileUrl": "https://example.com/file.pptx",
"templateId": "template123",
"pptxProperty": "base64编码的压缩数据",
"userId": "user123",
"userName": "张三",
"companyId": 1000,
"updateTime": null,
"createTime": "2024-01-01 10:00:00"
}
}
}