curl --location --request GET '/docmee/v1/api/ppt/loadPptx?id=xxx' \
--header 'token: {token}'{
"code": 0,
"data": {
"pptInfo": {
// ppt information
// Data structure same as generatePptx PPT generation API...
"id": "xxx", // ppt id
"subject": "xxx", // subject
"coverUrl": "https://xxx.png", // cover
"templateId": "xxx", // template ID
"pptxProperty": "xxx", // PPT data structure (json data is returned compressed with gzip and encoded in base64, please refer to the [PPT Frontend Rendering] section for specific decoding and data structure)
"userId": "xxx", // user ID
"userName": "xxx", // user name
"companyId": 1000,
"updateTime": null,
"createTime": "2024-01-01 10:00:00"
}
},
"message": "Operation successful"
}