{
"id": "ID returned by the generation interface",
"cover_note": "Remarks on the cover page",
"mind_map_note": "Remarks on the mind map page",
"catalog_note": "Remarks on the catalog page",
"end_note": "Remarks on the end page",
"notes": [
{
"note": "Remarks on first-level outline 1",
"sub_note": [
"Remarks on second-level outline"
]
},
{
"note": "Remarks on first-level outline 2",
"sub_note": [
"Remarks on second-level outline"
]
}
]
}curl --location --request POST '/yoo-ai/v1/ppt-note' \
--header 'AccessToken;' \
--header 'AccessSecret;' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": "ID returned by the generation interface",
"cover_note": "Remarks on the cover page",
"mind_map_note": "Remarks on the mind map page",
"catalog_note": "Remarks on the catalog page",
"end_note": "Remarks on the end page",
"notes": [
{
"note": "Remarks on first-level outline 1",
"sub_note": [
"Remarks on second-level outline"
]
},
{
"note": "Remarks on first-level outline 2",
"sub_note": [
"Remarks on second-level outline"
]
}
]
}'{
"code": 200,
"msg": "success",
"data": {
"id": "a3vSWq37DWjcBEc3XuYGNadNZrZWYBjE"
}
}