I have Power Automate flow which expects a parameter in below schema from Power Apps button:
{
"kind": "PowerApp",
"inputs": {
"schema": {
"type": "object",
"properties": {
"GetID_Value": {
"type": "integer",
"description": "Enter initial value",
"isPartial": false
}
},
"required": [
"GetID_Value"
]
}
}
}
I am passing parameter in following way:
GenerateFundingLetter.Run(Value(ThisItem.ID))
I get this error:
GenerateFundingLetter.Run failed: { "error": { "code": "TriggerInputSchemaMismatch", "message": "The input body for trigger 'manual' of type 'Request' did not match its schema definition. Error details: 'Required properties are missing from object: GetID_Value.'." } }
The parameter I am ;passing is integer but I dont understand why it says required properties missing. Can someone suggest what should be the right format to pass GetID_Value parameter?