curl --location --request POST '/docmee/v1/api/ppt/updatePptTemplate' \
--header 'Content-Type: text/plain' \
--data-raw '{
"pptId": "xxx", // ppt id
"templateId": "xxx", // template ID
"sync": false // whether to synchronously update the PPT file (default false for asynchronous update, faster)
}'{
"code": 0,
"data": {
"pptId": "xxx",
"templateId": "xxx",
"pptxProperty": { // The pptx structure data after replacement (json)
// ...
}
}
}