Hi all,
I am writing a flow that opens an email from the bank, dynamically finds the paragraph with the needed information, and then parses that paragraph. The flow opens the email, converts html to plain text, splits on line break into an array, and then filters the array for the beginning sentence of the paragraph. The result of the filter array is a single object.
Let's say the input of the split is ["/n","/n","/n","From: Joe","Subject: Hi","/n","/n","The debit amount posted is","/n","/n"] and the output of the filter is ["The debit amount posted is"].
I have tried using outputs['Filter_Element'][0], but it says I have to select the value by property name. My problem is there is no property name to select with. I just consistently end up with this object ["The debit amount posted is"] instead of string type "The debit amount posted is"
Is there a way to either get the value out, or some way to assign a name property to the existing value so I can then extract it? I must be missing something obviously simple.
Thank you!
Solved! Go to Solution.
Figured it out myself, I needed to use body... either body('Filter_Element') or outputs().body. Hopefully this saves someone else time lol
Figured it out myself, I needed to use body... either body('Filter_Element') or outputs().body. Hopefully this saves someone else time lol
User | Count |
---|---|
103 | |
36 | |
29 | |
25 | |
16 |
User | Count |
---|---|
134 | |
53 | |
53 | |
36 | |
26 |