An API endpoint return multiple text object e.g .
{"name":"John","email":"dummyvalue","image":"dummyvalue"}
{"name":"Rick","email":"dummyvalue","image": "dummyvalue"}
How do i parse “name” from the text objects and use the name as a query params in an API endpoint e.g
“name” : “John” or “name”: ”Rick” and
API : https:apiendpoint/?name=”John”
Response from above API :
{
response:”Hi, John”
}
and use the response from that api to send email
Note cannot use code by zapier
Any suggestion on how we can achieve this without no code
Thanks
Abhishek