Hello experts,
I'm a beginner in Power Automate and Flow and also new in the community.
I guess for most of you this is a quick win, but I'm a bit lost.
Would be great to get some ideas how to solve my issue.
I have a Wordpress form. Following JSON will be send after clicking "submit":
{
"$content-type": "application/x-www-form-urlencoded",
"$content": "cG9zdF9GVzdYWpheD0w",
"$formdata": [
{
"key": "post_id",
"value": "001"
},
{
"key": "post_text",
"value": "testpage"
},
{
"key": "timestamp",
"value": "2023-09-14T21:55"
},
{
"key": "firstname",
"value": "Userfirstname"
},
{
"key": "name",
"value": "Username"
},
{
"key": "e_mail",
"value": "test@test.com"
}
]
}
My goal is to insert the data into a new excel line in a table. The table has the structure of the key values pairs already.
I'm using Flow.
In my flow I currently use a HTTP request, (I use the generated POST URL in my form) and I use the Excel action: add line to a table (sorry I use not the englisch version, so maybe it's a different name). I have tested a lot of different configurations but without success...
Would love to get some ideas how I can solve that
Thanks so much, cheers!
#frank