curl --location --request POST '/docmee/v1/api/ppt/savePptx' \
--header 'token: {token}' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": "xxx", // ppt id
"drawPptx": true, // Whether to re-render the PPT file and upload
"drawCover": true, // Whether to re-render the PPT cover and upload
"pptxProperty": {
// Modified pptx page data structure tree
}
}'{
"code": 0,
"data": {
"pptInfo": {
// ppt information
// Data structure same as the generatePptx PPT generation API...
}
},
"message": "Operation successful"
}