I am currently exploring Aspose.Slides cloud for cpp.
When I try to extract shape using API:
/slides/{name}/slides/{slideIndex}/shapes/{shapeIndex} GET
the response I get is:
{
"type": "Shape",
"text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
"paragraphs": {
"href": "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/slides/3/shapes/2/paragraphs?folder=MyFolder",
"relation": "self",
"slideIndex": 3,
"shapeIndex": 2
},
"textFrameFormat": {...}
other shape properties
}}
Here to fetch paragraphs, I require another fetch paragraph content, and then recursively another call to fetch different portions within each paragraph and so on.
I require to be able to fetch all content within the same response, thereby reducing the number of API calls required to extract ppt information.
Is such support available?