I have created a custom connector which I am adding in PowerApps and Power Automate. There is one action named "GetDetails" in custom connector to fetch details from an endpoint. Response from an endpoint is dynamic.
Sample response from end point:
{
"data": {
//Some Dynamic Content
}
}
Swagger file response definition:
get:
responses:
default:
description: default
schema:
type: object
properties:
data: {type: object, description: data} <---- Since dynamic properties in "data" at run time
Question:
Now when I use custom connector in Power Automate I get data property along with dynamic content. But when I use this custom connector in PowerApps I get empty data property. Dynamic content is missing.

When you say "...when I use this custom connector in PowerApps...", how are you using it? Likely, you're creating a Collection using something like:
You can try adding a
.to theClearCollectstatement to see if the schema needs another "level". This is known as "dot notation". Just adding a "." can be a big help for exploring the different schema levels.EDIT 1
Hm. If you've tested the response and validated using Power Automate (or Postman, etc.), the only things I can think of are:
JSON()function from yourClearCollect()statement.Import from sampleunderRequestVerb,Headersand a sample JSONBody