curl --location -g --request GET '{{BASE_URL}}/docmee/v1/api/ppt/asyncPptInfo?pptId=xxx' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}'
{
"code": 0,
"data": {
"total": 23, // 总页数
"current": 1, // 当前已生成页数(如果current >= total时表示PPT生成完成)
"pptxProperty": "xxx" // PPT数据结构(json gzip base64)
}
}