Hi everyone,
I'm quite new to working with custom connectors and stumbled upon something could need a bit of assistance with 🙂
I created a custom connector for azure lab services from an openapi definition which I want to use inside a PowerApp. The connector Seems to be working fine. However, when calling it from inside my app, the collection does not seem to contain all properties.
Here is what I get when running the test from the connector: (x'ed out some values)
{
"value": [
{
"properties": {
"maxUsersInLab": 1,
"userQuota": 400,
"invitationCode": "xxx",
"createdByObjectId": "xxx",
"usageQuota": "PT10H",
"userAccessMode": "Restricted",
"createdByUserPrincipalName": "xxx",
"createdDate": "xxx",
"provisioningState": "Succeeded",
"uniqueIdentifier": "xxx",
"latestOperationResult": {}
},
"id": "xxx",
"name": "xxx",
"type": "Microsoft.LabServices/labAccounts/labs",
"location": "xxx"
}
]
}
When using the same call from inside the app, the resulting collection only contains the "properties" object, but is missing id, name, type and location



Any Idea on why the properties are missing in the collection? Is there a way to inspect the results outside of a collection?
Thanks & Regards
Fabian