Extract Shape Content and All Properties in Single API Response in C++

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?

@pankajku

Can you please clarify if you are looking for a specific API feature that combines all shape content and properties in a single response, or are you asking for a workaround to achieve this with the current API structure?

Specific API feature that combines all shape content and properties in a single response would be more fitting to our needs.
If not, please suggest workaround as well

This topic has been moved to the related forum: Extract Shape Content and All Properties in Single API Response - Free Support Forum - aspose.cloud