I have a flow which is coming from power app click button, It bring the Json data, So I am select data operation method to apply the column with some formatting, All is working fine but Date format function is producing error.
Could not understand the mistake in the expression below
formatDateTime(item()?['SvcDate'],'MMM/dd/yyyy')
Below is the images of my flow, error and its related screen
My Flow:

The execution of template action 'Select_Data_Method' failed: The evaluation of 'query' action 'where' expression '{
"Record No": "@item()?['RecoNo']",
"Svc Date": "@formatDateTime(item()?['SvcDate'],'MMM/dd/yyyy')",
"Model": "@item()?['Model']",
"Serial No": "@item()?['SerialNo']",
"Svc SMR": "@item()?['SvcSMR']",
"Svc Remarks": "@item()?['SvcRemarks']",
"Svc Expense": "@formatNumber(item()?['SvcExpense'],'0.00')",
"Customer": "@item()?['Customer']"
}' failed: 'In function 'formatDateTime', the value provided for date time string '26-01-2024' was not valid. The datetime string must match ISO 8601 format.'.
