I have this sample array data in flow,
[{
"name": "abc",
"Lastname": "xyz",
"emailid": "abc@gmail.com"
},
{
"name": "def",
"Lastname": "eee",
"emailid": "def@gmail.com"
}]
In Power automate flow using email id as input, how can I get name and last name values for that respective email.
eg: emailid input : def@gmail.com to the array variable
output: Name and Last name values. that should be def and eee.
Thanks in advance !!!