I don't get the Values from the dropdown. Am trying to get the values from a .json file. Below is the .json file. I tried to import the json file, but was getting error, so I tried to create a manual flow based on the below json file.
{"properties":{"connectionReferences":{"shared_commondataservice_1":{"runtimeSource":"embedded","connection":{},"api":{"name":"shared_commondataservice"}}},"definition":{"$schema":"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#","contentVersion":"1.0.0.0","parameters":{"$connections":{"defaultValue":{},"type":"Object"},"$authentication":{"defaultValue":{},"type":"SecureObject"}},"triggers":{"manual":{"type":"Request","kind":"VirtualAgent","inputs":{"schema":{"type":"object","properties":{"text":{"title":"Customer Email","type":"string","x-ms-dynamically-added":true,"description":"Customer's email","x-ms-content-hint":"TEXT"}},"required":["text"]}}}},"actions":{"List_records":{"runAfter":{},"type":"OpenApiConnection","inputs":{"host":{"connectionName":"shared_commondataservice_1","operationId":"GetItems_V2","apiId":"/providers/Microsoft.PowerApps/apis/shared_commondataservice"},"parameters":{"dataset":"org8b94eca3.crm","table":"cr6bd_deviceorders","$filter":"cr6bd_requestedby eq '@{triggerBody()['text']}'","$top":1},"authentication":"@parameters('$authentication')"}},"Compose":{"runAfter":{"List_records":["Succeeded"]},"type":"Compose","inputs":"@first(body('List_records')?['value'])"},"Return_value(s)_to_Power_Virtual_Agents":{"runAfter":{"Compose":["Succeeded"]},"type":"Response","kind":"VirtualAgent","inputs":{"statusCode":200,"body":{"devicename":"@{outputs('Compose')?['cr6bd_devicename']}","customeremail":"@{outputs('Compose')?['cr6bd_requestedby']}","ordernumber":"@{outputs('Compose')?['cr6bd_deviceorderid']}","orderdate":"@{outputs('Compose')?['createdon']}","price":"@{outputs('Compose')?['cr6bd_price']}","iswarrantyactive":"@{outputs('Compose')?['crd4a_iswarrantyactive']}","customerphone":"@{outputs('Compose')?['crd4a_customerphone']}","serialnumber":"@{outputs('Compose')?['cr6bd_deviceorderid']}"},"schema":{"type":"object","properties":{"devicename":{"title":"DeviceName","x-ms-dynamically-added":true,"type":"string"},"customeremail":{"title":"CustomerEmail","x-ms-dynamically-added":true,"type":"string"},"ordernumber":{"title":"OrderNumber","x-ms-dynamically-added":true,"type":"string"},"orderdate":{"title":"OrderDate","x-ms-dynamically-added":true,"type":"string"},"price":{"title":"Price","x-ms-dynamically-added":true,"type":"string"},"iswarrantyactive":{"title":"IsWarrantyActive","x-ms-dynamically-added":true,"type":"string"},"customerphone":{"title":"CustomerPhone","x-ms-dynamically-added":true,"type":"string"},"serialnumber":{"title":"SerialNumber","x-ms-dynamically-added":true,"type":"string"}}}}}},"outputs":{}}},"schemaVersion":"1.0.0.0"}