Thank you very much for the tips, but I'm still getting an error when I try to run the flow. I have several inputs, and the app worked up until I added the Date Trigger input field. It says there is a problem with the Flow's trigger. The input data schema is:
{
"type": "object",
"properties": {
"number": {
"title": "ID",
"type": "number",
"x-ms-dynamically-added": true,
"description": "Please enter a number",
"x-ms-content-hint": "NUMBER"
},
"text": {
"title": "Title",
"type": "string",
"x-ms-dynamically-added": true,
"description": "Please enter your input",
"x-ms-content-hint": "TEXT"
},
"text_1": {
"title": "DocNumber",
"type": "string",
"x-ms-dynamically-added": true,
"description": "Please enter your input",
"x-ms-content-hint": "TEXT"
},
"text_2": {
"title": "Version",
"type": "string",
"x-ms-dynamically-added": true,
"description": "Please enter your input",
"x-ms-content-hint": "TEXT"
},
"text_3": {
"title": "User",
"type": "string",
"x-ms-dynamically-added": true,
"description": "Please enter your input",
"x-ms-content-hint": "TEXT"
},
"text_4": {
"title": "DocType",
"type": "string",
"x-ms-dynamically-added": true,
"description": "Please enter your input",
"x-ms-content-hint": "TEXT"
},
"text_5": {
"title": "DocSubject",
"type": "string",
"x-ms-dynamically-added": true,
"description": "Please enter your input",
"x-ms-content-hint": "TEXT"
},
"text_6": {
"title": "Owner",
"type": "string",
"x-ms-dynamically-added": true,
"description": "Please enter your input",
"x-ms-content-hint": "TEXT"
},
"boolean": {
"title": "ReviewerAccess",
"type": "boolean",
"x-ms-dynamically-added": true,
"description": "Please select yes or no",
"x-ms-content-hint": "BOOLEAN"
},
"boolean_1": {
"title": "Retired",
"type": "boolean",
"x-ms-dynamically-added": true,
"description": "Please select yes or no",
"x-ms-content-hint": "BOOLEAN"
},
"date": {
"title": "ReviewByDate",
"type": "string",
"format": "date",
"x-ms-dynamically-added": true,
"description": "Please enter or select a date (YYYY-MM-DD)",
"x-ms-content-hint": "DATE"
}
},
"required": [
"number",
"text",
"text_1",
"text_2",
"text_3",
"text_4",
"text_5",
"text_6",
"boolean",
"boolean_1",
"date"
]
}
(There are several inputs prior to the date input, but I excluded those as the flow works if I don't include the date trigger.)
The error just says, "Action 'manual' failed. and 'Bad Request'
I have inserted a label within the data card set to Text(DataCardValueDate.SelectedDate, "yyyy/mm/dd"). And I point to this label for the Input field.
Not sure why I'm getting an error.....