How to get Slides Placeholder content with PHP SDK of Aspose.Slides Cloud

When I call GetSlidesPlaceholdersRequest on a slide I don’t seem to be getting back any content. I get back the following fields, but title is always Null. Is there a way to get be the contents of a placeholder?

This is returned for every placeholder (with changes to slide number and placeholder number)

["href"]=> "https://api.aspose.cloud/v3.0/slides/S12.pptx/slides/2/placeholders/12?folder=santander"
["relation"]=> "self"
["linkType"]=>NULL
["title"]=>NULL

What I’m trying to do is systematically get the contents of the title placeholder to identify a slide

@klubar

Thanks for your inquiry. We have tested the scenario and noticed the reported issue, so logged a ticket SLIDESCLOUD-728 in our issue tracking system for further investigation and rectification. We will keep you updated about the issue resolution progress within this forum thread.

However as a temporary workaround you can use Shapes API as following.

curl -X GET "https://api.aspose.cloud/v3.0/slides/TestPlaceholder.pptx/slides/1/shapes/1"
-H "accept: application/json" 
-H "authorization: Bearer [JWT_Access_Token]"