Re: Need help to run simple flow via power apps.
Hi @Sormick
Yours Peek code is correct you get input one value "Text"
How many Fileds did you want create
if you need some extra fileds to add this area

{
"kind": "PowerAppV2",
"inputs": {
"schema": {
"type": "object",
"properties": {
"text": {
"title": "Title",
"type": "string",
"x-ms-dynamically-added": true,
"description": "Please enter your input",
"x-ms-content-hint": "TEXT"
},
"text_1": {
"title": "Discription",
"type": "string",
"x-ms-dynamically-added": true,
"description": "Please enter your input",
"x-ms-content-hint": "TEXT"
}
},
"required": [
"text",
"text_1"
]
}
},
"metadata": {
"operationMetadataId": "**********************"
}
}