I have a custom connector "DataAPI" with Operation ID "TestResult". When I test, I get the response body in JSON format:
{
"Key1": "Value1",
"Key2": "Value2",
"Key3": "Value3"
}
In my app, I have tried adding a button with
ClearCollect(
testCollection,
DataAPI.TestResult()
)
but this does not add the response to the collection.
How do I store my response in a collection or even access individual values like
DataAPI.TestResult().Key1.Value