HTTP Post , url variables

HTTP Post , url variables

@JORDI masmitja

I have created an action, which fires correctly.
When I receive a GPS position, the goal is to send it to an endpoint on another platform.

We need call something like this:
http://mycustomendpoint/?id={0}&lat={1}&lon={2}

but when we put this url, the system does not correctly parse the variables …
“$ location.lat $” and “$ location.lng $”

http://mycustomendpoint/?id=123456&lat=$location.lat$&lon=$location.lng$

Thanks in advances.