I have a query (one API call) that returns latitude and longitude fields. I would like to take those two fields and run a separate query (separate API call) to display the address given those coordinates. Is there anyway I could reference the returned fields I have in the first query and use those to run the second API call?
For example, I’m collecting the below data from one query:
I am using API calls here. One call I can receive the coordinates, then I need to run another call to get the address. If it was database directly, sure I could just use some joins but this isn’t the case…