Hello,
is there any option, where i am able to see whole json file which i am recieving from typeform?
I am using Power Automate for collecting responses from typeform, but when i am using fe. form with more than 1 field (First Name, Last Name, Email) , i see in PA one object variable where all values are stored, so if i want to parse First Name, i need to fill the form, run the flow, check the json response and find the Unique IDs “MyLw7ztt….” for each values - like this
So when i want to get the first name, in PA i have this:
triggerOutputs()['body/form_response/answersObject/MyLw7zttttta']['text']
So what i need is just to see the unique IDs for each user input.
Thanks!
{
"MyLw7zttttta": {
"type": "text",
"text": "Jan",
"field": {
"id": "MyLw7zttttta",
"type": "short_text",
"ref": "refID"
},
"value": "Joe"
},
"MyLw7ztttttb": {
"type": "text",
"text": "Lemon",
"field": {
"id": "MyLw7ztttttb",
"type": "short_text",
"ref": "refID"
},
"value": "Blinken"
},
"MyLw7ztttttx": {
"type": "phone_number",
"phone_number": "+420722915144",
"field": {
"id": "MyLw7ztttttx",
"type": "phone_number",
"ref": "refID"
},
"value": "+420777000000"
},
"MyLw7ztttttf": {
"type": "email",
"email": "j.j@j.com",
"field": {
"id": "MyLw7ztttttf",
"type": "email",
"ref": "refID"
},
"value": "j.j@j.com"
},