curl --location --request POST '/docmee/v1/api/ppt/listPptx' \
--header 'token: {token}' \
--header 'Content-Type: application/json' \
--data-raw '{
"page": 1,
"size": 10,
"filters": {
// Can filter based on fields
}
}
Response'{
"code": 0,
"total": 1,
"data": [
{
"id": "xxx", // ppt id
"subject": "xxx", // subject
"coverUrl": "https://xxx.png", // cover
"templateId": "xxx", // template ID
"userId": "xxx", // user ID
"userName": "xxx", // user name
"companyId": 1000,
"updateTime": null,
"createTime": "2024-01-01 10:00:00"
}
],
"message": "Operation successful"
}