I am using the SharePoint REST API to return information an all SharePoint sites in a site collection including subsites.
Using "Send HTTP Request to SharePoint" connector I do a GET request for
_api/search/query?querytext='(Contentclass:STS_WEb)'&trimduplicates=false&rowlimit=5000&Selectproperties='title,url'
Next I use the "Parse JSON" connector autogenerating the schema from the output of the HTTP request.
Finally I use the "Create CSV Table" connector. Which results in the error "The 'from' property value in the 'table' action inputs is type 'Null'. The value must be of type 'Array'.
My guess is the issue is the JSON is not being parsed correctly. The input and the output essentially look the same not formatted at all.
Any help would be appreciated!