I've created a flow in Power Automate to insert data into a Databricks table using the HTTP connector.
I should mention that I don't have a Power Apps Premium license.
Value(TextInput1.Text), // id
TextInput1_1.Text, // name
TextInput1_2.Text, // description
Value(TextInput1_3.Text),// price
Value(TextInput1_4.Text),// quantity
DatePicker1.SelectedDate // creation_date
));
Notify(
"Response: " & Text(response.status) & " - " & Text(response.message),
NotificationType.Information
);
If(
response.status = "Success",
Notify("insertion_ok", NotificationType.Success),
Notify("insertion_ko: " & response.message, NotificationType.Error)
);
Thanks

Report
All responses (
Answers (